diff options
-rw-r--r-- | usr.bin/ssh/servconf.c | 4 | ||||
-rw-r--r-- | usr.bin/ssh/sshd.8 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index ae59b54591e..914cff2612c 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -12,7 +12,7 @@ Created: Mon Aug 21 15:48:58 1995 ylo */ #include "includes.h" -RCSID("$Id: servconf.c,v 1.18 1999/10/17 23:09:16 dugsong Exp $"); +RCSID("$Id: servconf.c,v 1.19 1999/10/25 21:35:25 markus Exp $"); #include "ssh.h" #include "servconf.h" @@ -106,7 +106,7 @@ void fill_default_server_options(ServerOptions *options) if (options->keepalives == -1) options->keepalives = 1; if (options->log_facility == (SyslogFacility)(-1)) - options->log_facility = SYSLOG_FACILITY_DAEMON; + options->log_facility = SYSLOG_FACILITY_AUTH; if (options->rhosts_authentication == -1) options->rhosts_authentication = 0; if (options->rhosts_rsa_authentication == -1) diff --git a/usr.bin/ssh/sshd.8 b/usr.bin/ssh/sshd.8 index 4b3321588a2..751916bcbf0 100644 --- a/usr.bin/ssh/sshd.8 +++ b/usr.bin/ssh/sshd.8 @@ -9,7 +9,7 @@ .\" .\" Created: Sat Apr 22 21:55:14 1995 ylo .\" -.\" $Id: sshd.8,v 1.20 1999/10/17 23:09:16 dugsong Exp $ +.\" $Id: sshd.8,v 1.21 1999/10/25 21:35:25 markus Exp $ .\" .Dd September 25, 1999 .Dt SSHD 8 @@ -402,7 +402,7 @@ directory or files world-writable. The default is Gives the facility code that is used when logging messages from .Nm sshd . The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2, -LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7. The default is DAEMON. +LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7. The default is AUTH. .It Cm UseLogin Specifies whether .Xr login 1 |