summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CREDITS2
-rw-r--r--ChangeLog5
-rw-r--r--TODO2
-rw-r--r--configure.in1
-rw-r--r--loginrec.c7
5 files changed, 8 insertions, 9 deletions
diff --git a/CREDITS b/CREDITS
index ba89d9f6b..71634de2d 100644
--- a/CREDITS
+++ b/CREDITS
@@ -12,7 +12,7 @@ Andrew Stribblehill <a.d.stribblehill@durham.ac.uk> - Bugfixes
12Andy Sloane <andy@guildsoftware.com> - bugfixes 12Andy Sloane <andy@guildsoftware.com> - bugfixes
13Aran Cox <acox@cv.telegroup.com> - SCO bugfixes 13Aran Cox <acox@cv.telegroup.com> - SCO bugfixes
14Arkadiusz Miskiewicz <misiek@pld.org.pl> - IPv6 compat fixes 14Arkadiusz Miskiewicz <misiek@pld.org.pl> - IPv6 compat fixes
15Ben Lindstrom <mouring@pconline.com> - NeXT support 15Ben Lindstrom <mouring@eviladmin.org> - NeXT support
16Ben Taylor <bent@clark.net> - Solaris debugging and fixes 16Ben Taylor <bent@clark.net> - Solaris debugging and fixes
17Bratislav ILICH <bilic@zepter.ru> - Configure fix 17Bratislav ILICH <bilic@zepter.ru> - Configure fix
18Charles Levert <charles@comm.polymtl.ca> - SunOS 4 & bug fixes 18Charles Levert <charles@comm.polymtl.ca> - SunOS 4 & bug fixes
diff --git a/ChangeLog b/ChangeLog
index 5df35b453..b2876463a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120001202
2 - (bal) Backed out of part of Alain St-Denis' loginrec.c patch.
3 - (bal) Irix need some sort of mansubdir, patch by Michael Stone
4 <mstone@cs.loyola.edu>
5
120001129 620001129
2 - (djm) Back out all the serverloop.c hacks. sshd will now hang again 7 - (djm) Back out all the serverloop.c hacks. sshd will now hang again
3 if there are background children with open fds. 8 if there are background children with open fds.
diff --git a/TODO b/TODO
index 86bb71ad5..cc274c885 100644
--- a/TODO
+++ b/TODO
@@ -39,8 +39,6 @@ Clean up configure/makefiles:
39 own directory. 39 own directory.
40 (mouring@eviladmin.org) 40 (mouring@eviladmin.org)
41 41
42- Fix up manpages to provide right paths to sshd_config, ssh_config, etc.
43
44Packaging: 42Packaging:
45- Solaris: Update packaging scripts and build new sysv startup scripts 43- Solaris: Update packaging scripts and build new sysv startup scripts
46 (gilbert.r.loomis@saic.com) 44 (gilbert.r.loomis@saic.com)
diff --git a/configure.in b/configure.in
index 50e9d47ec..34c729e6b 100644
--- a/configure.in
+++ b/configure.in
@@ -119,6 +119,7 @@ case "$host" in
119 no_libsocket=1 119 no_libsocket=1
120 no_libnsl=1 120 no_libnsl=1
121 AC_DEFINE(BROKEN_INET_NTOA) 121 AC_DEFINE(BROKEN_INET_NTOA)
122 mansubdir=man
122 ;; 123 ;;
123*-*-linux*) 124*-*-linux*)
124 no_dev_ptmx=1 125 no_dev_ptmx=1
diff --git a/loginrec.c b/loginrec.c
index 910524d18..224866128 100644
--- a/loginrec.c
+++ b/loginrec.c
@@ -161,7 +161,7 @@
161#include "xmalloc.h" 161#include "xmalloc.h"
162#include "loginrec.h" 162#include "loginrec.h"
163 163
164RCSID("$Id: loginrec.c,v 1.27 2000/11/10 03:28:31 mouring Exp $"); 164RCSID("$Id: loginrec.c,v 1.28 2000/12/01 21:19:51 mouring Exp $");
165 165
166#ifdef HAVE_UTIL_H 166#ifdef HAVE_UTIL_H
167# include <util.h> 167# include <util.h>
@@ -512,13 +512,8 @@ char *
512line_stripname(char *dst, const char *src, int dstsize) 512line_stripname(char *dst, const char *src, int dstsize)
513{ 513{
514 memset(dst, '\0', dstsize); 514 memset(dst, '\0', dstsize);
515#ifdef sgi
516 if (strncmp(src, "/dev/tty", 8) == 0)
517 strlcpy(dst, src + 8, dstsize);
518#else
519 if (strncmp(src, "/dev/", 5) == 0) 515 if (strncmp(src, "/dev/", 5) == 0)
520 strlcpy(dst, src + 5, dstsize); 516 strlcpy(dst, src + 5, dstsize);
521#endif
522 else 517 else
523 strlcpy(dst, src, dstsize); 518 strlcpy(dst, src, dstsize);
524 return dst; 519 return dst;