]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2002/11/07 16:28:47
authormouring <mouring>
Sat, 9 Nov 2002 15:50:03 +0000 (15:50 +0000)
committermouring <mouring>
Sat, 9 Nov 2002 15:50:03 +0000 (15:50 +0000)
     [sshd.c]
     log to stderr if -ie is given, bug #414, prj@po.cwru.edu

ChangeLog
sshd.c

index 2115af23dd1e0d70bd20e2218e67380c158bd946..5985d00708f7759df61a83e8eb34634384319784 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -22,6 +22,9 @@
    - markus@cvs.openbsd.org 2002/11/05 20:10:37
      [sftp-client.c]
      typo; GaryF@livevault.com
+   - markus@cvs.openbsd.org 2002/11/07 16:28:47
+     [sshd.c]
+     log to stderr if -ie is given, bug #414, prj@po.cwru.edu
 
 20021021
  - (djm) Bug #400: Kill ssh-rand-helper children on timeout, patch from 
diff --git a/sshd.c b/sshd.c
index f8bd7ce544034cd0e101c8aeff1385db880fd2fc..8bf1557a25d595f6acc66fc7fa4d64c887351d38 100644 (file)
--- a/sshd.c
+++ b/sshd.c
@@ -42,7 +42,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: sshd.c,v 1.260 2002/09/27 10:42:09 mickey Exp $");
+RCSID("$OpenBSD: sshd.c,v 1.261 2002/11/07 16:28:47 markus Exp $");
 
 #include <openssl/dh.h>
 #include <openssl/bn.h>
@@ -944,7 +944,7 @@ main(int ac, char **av)
            SYSLOG_LEVEL_INFO : options.log_level,
            options.log_facility == SYSLOG_FACILITY_NOT_SET ?
            SYSLOG_FACILITY_AUTH : options.log_facility,
-           !inetd_flag);
+           log_stderr || !inetd_flag);
 
 #ifdef _UNICOS
        /* Cray can define user privs drop all prives now!
This page took 0.094832 seconds and 5 git commands to generate.