20001202
- (bal) Backed out of part of Alain St-Denis' loginrec.c patch. - (bal) Irix need some sort of mansubdir, patch by Michael Stone <mstone@cs.loyola.edu> Also removed a finished entry in TODO, and changed my address in the CREDITS file to match my new home address.
This commit is contained in:
parent
43dc8da75c
commit
75214f9c19
2
CREDITS
2
CREDITS
|
@ -12,7 +12,7 @@ Andrew Stribblehill <a.d.stribblehill@durham.ac.uk> - Bugfixes
|
||||||
Andy Sloane <andy@guildsoftware.com> - bugfixes
|
Andy Sloane <andy@guildsoftware.com> - bugfixes
|
||||||
Aran Cox <acox@cv.telegroup.com> - SCO bugfixes
|
Aran Cox <acox@cv.telegroup.com> - SCO bugfixes
|
||||||
Arkadiusz Miskiewicz <misiek@pld.org.pl> - IPv6 compat fixes
|
Arkadiusz Miskiewicz <misiek@pld.org.pl> - IPv6 compat fixes
|
||||||
Ben Lindstrom <mouring@pconline.com> - NeXT support
|
Ben Lindstrom <mouring@eviladmin.org> - NeXT support
|
||||||
Ben Taylor <bent@clark.net> - Solaris debugging and fixes
|
Ben Taylor <bent@clark.net> - Solaris debugging and fixes
|
||||||
Bratislav ILICH <bilic@zepter.ru> - Configure fix
|
Bratislav ILICH <bilic@zepter.ru> - Configure fix
|
||||||
Charles Levert <charles@comm.polymtl.ca> - SunOS 4 & bug fixes
|
Charles Levert <charles@comm.polymtl.ca> - SunOS 4 & bug fixes
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
20001202
|
||||||
|
- (bal) Backed out of part of Alain St-Denis' loginrec.c patch.
|
||||||
|
- (bal) Irix need some sort of mansubdir, patch by Michael Stone
|
||||||
|
<mstone@cs.loyola.edu>
|
||||||
|
|
||||||
20001129
|
20001129
|
||||||
- (djm) Back out all the serverloop.c hacks. sshd will now hang again
|
- (djm) Back out all the serverloop.c hacks. sshd will now hang again
|
||||||
if there are background children with open fds.
|
if there are background children with open fds.
|
||||||
|
|
2
TODO
2
TODO
|
@ -39,8 +39,6 @@ Clean up configure/makefiles:
|
||||||
own directory.
|
own directory.
|
||||||
(mouring@eviladmin.org)
|
(mouring@eviladmin.org)
|
||||||
|
|
||||||
- Fix up manpages to provide right paths to sshd_config, ssh_config, etc.
|
|
||||||
|
|
||||||
Packaging:
|
Packaging:
|
||||||
- Solaris: Update packaging scripts and build new sysv startup scripts
|
- Solaris: Update packaging scripts and build new sysv startup scripts
|
||||||
(gilbert.r.loomis@saic.com)
|
(gilbert.r.loomis@saic.com)
|
||||||
|
|
|
@ -119,6 +119,7 @@ case "$host" in
|
||||||
no_libsocket=1
|
no_libsocket=1
|
||||||
no_libnsl=1
|
no_libnsl=1
|
||||||
AC_DEFINE(BROKEN_INET_NTOA)
|
AC_DEFINE(BROKEN_INET_NTOA)
|
||||||
|
mansubdir=man
|
||||||
;;
|
;;
|
||||||
*-*-linux*)
|
*-*-linux*)
|
||||||
no_dev_ptmx=1
|
no_dev_ptmx=1
|
||||||
|
|
|
@ -161,7 +161,7 @@
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "loginrec.h"
|
#include "loginrec.h"
|
||||||
|
|
||||||
RCSID("$Id: loginrec.c,v 1.27 2000/11/10 03:28:31 mouring Exp $");
|
RCSID("$Id: loginrec.c,v 1.28 2000/12/01 21:19:51 mouring Exp $");
|
||||||
|
|
||||||
#ifdef HAVE_UTIL_H
|
#ifdef HAVE_UTIL_H
|
||||||
# include <util.h>
|
# include <util.h>
|
||||||
|
@ -512,13 +512,8 @@ char *
|
||||||
line_stripname(char *dst, const char *src, int dstsize)
|
line_stripname(char *dst, const char *src, int dstsize)
|
||||||
{
|
{
|
||||||
memset(dst, '\0', dstsize);
|
memset(dst, '\0', dstsize);
|
||||||
#ifdef sgi
|
|
||||||
if (strncmp(src, "/dev/tty", 8) == 0)
|
|
||||||
strlcpy(dst, src + 8, dstsize);
|
|
||||||
#else
|
|
||||||
if (strncmp(src, "/dev/", 5) == 0)
|
if (strncmp(src, "/dev/", 5) == 0)
|
||||||
strlcpy(dst, src + 5, dstsize);
|
strlcpy(dst, src + 5, dstsize);
|
||||||
#endif
|
|
||||||
else
|
else
|
||||||
strlcpy(dst, src, dstsize);
|
strlcpy(dst, src, dstsize);
|
||||||
return dst;
|
return dst;
|
||||||
|
|
Loading…
Reference in New Issue