]> andersk Git - openssh.git/commitdiff
20001202
authormouring <mouring>
Fri, 1 Dec 2000 21:19:51 +0000 (21:19 +0000)
committermouring <mouring>
Fri, 1 Dec 2000 21:19:51 +0000 (21:19 +0000)
 - (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.

CREDITS
ChangeLog
TODO
configure.in
loginrec.c

diff --git a/CREDITS b/CREDITS
index ba89d9f6b43aa8f833a00aa723add30391922844..71634de2d0b4299e7fc18288b1cf0d6042ee95eb 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -12,7 +12,7 @@ Andrew Stribblehill <a.d.stribblehill@durham.ac.uk> - Bugfixes
 Andy Sloane <andy@guildsoftware.com> - bugfixes
 Aran Cox <acox@cv.telegroup.com> - SCO bugfixes
 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
 Bratislav ILICH <bilic@zepter.ru> - Configure fix
 Charles Levert <charles@comm.polymtl.ca> - SunOS 4 & bug fixes
index 5df35b453b6c5fd69d2d3d7c1cd9015599cbcf3b..b2876463a69e3cde66656a18c647b235ec9a1d7f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
  - (djm) Back out all the serverloop.c hacks. sshd will now hang again
    if there are background children with open fds.
diff --git a/TODO b/TODO
index 86bb71ad55acbe8cc6adb8ddae237767fe150a93..cc274c88515a1fbbfaf4b79c81c0db85642081da 100644 (file)
--- a/TODO
+++ b/TODO
@@ -39,8 +39,6 @@ Clean up configure/makefiles:
   own directory.
   (mouring@eviladmin.org)
 
-- Fix up manpages to provide right paths to sshd_config, ssh_config, etc.
-
 Packaging:
 - Solaris: Update packaging scripts and build new sysv startup scripts
   (gilbert.r.loomis@saic.com)
index 50e9d47ece164b31edfa4d7df8a6cb0a3991c73e..34c729e6b8641817c4137a0332145aba4464fb3e 100644 (file)
@@ -119,6 +119,7 @@ case "$host" in
        no_libsocket=1
        no_libnsl=1
        AC_DEFINE(BROKEN_INET_NTOA)
+       mansubdir=man
        ;;
 *-*-linux*)
        no_dev_ptmx=1
index 362c9facfe6a8a9016f33bdbea513c38f273f3f3..a51a66d9bb3d65e94b2e5d5068b83f389d1b312e 100644 (file)
@@ -512,13 +512,8 @@ char *
 line_stripname(char *dst, const char *src, int 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)
                strlcpy(dst, src + 5, dstsize);
-#endif
        else
                strlcpy(dst, src, dstsize);
        return dst;
This page took 0.962862 seconds and 5 git commands to generate.