summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--sshd.c6
2 files changed, 5 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 04c446f42..24afd751e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120040308
2 - (dtucker) [sshd.c] Back out rev 1.270 as it caused problems on some
3 platforms (eg SCO, HP-UX) with logging in the wrong TZ.
4
120040307 520040307
2 - (tim) [regress/login-timeout.sh] fix building outside of source tree. 6 - (tim) [regress/login-timeout.sh] fix building outside of source tree.
3 7
@@ -857,4 +861,4 @@
857 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 861 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
858 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 862 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
859 863
860$Id: ChangeLog,v 1.3277 2004/03/07 18:40:01 tim Exp $ 864$Id: ChangeLog,v 1.3278 2004/03/08 11:13:12 dtucker Exp $
diff --git a/sshd.c b/sshd.c
index 6169a7336..2c224b9c3 100644
--- a/sshd.c
+++ b/sshd.c
@@ -101,7 +101,6 @@ extern char *__progname;
101#else 101#else
102char *__progname; 102char *__progname;
103#endif 103#endif
104extern char **environ;
105 104
106/* Server configuration options. */ 105/* Server configuration options. */
107ServerOptions options; 106ServerOptions options;
@@ -1106,11 +1105,6 @@ main(int ac, char **av)
1106 unmounted if desired. */ 1105 unmounted if desired. */
1107 chdir("/"); 1106 chdir("/");
1108 1107
1109#ifndef HAVE_CYGWIN
1110 /* Clear environment */
1111 environ[0] = NULL;
1112#endif
1113
1114 /* ignore SIGPIPE */ 1108 /* ignore SIGPIPE */
1115 signal(SIGPIPE, SIG_IGN); 1109 signal(SIGPIPE, SIG_IGN);
1116 1110