summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sshd.c
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2001-01-18 16:20:23 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2001-01-18 16:20:23 +0000
commita4691d42f749de19890823deb77459b3bd91c42a (patch)
treef44ecb5df406cdda7300bb4904feccd7a629211a /usr.bin/ssh/sshd.c
parent53434c6ef5db5f64d77ee011becf8300095b66ec (diff)
log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many systems
Diffstat (limited to 'usr.bin/ssh/sshd.c')
-rw-r--r--usr.bin/ssh/sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c
index 9c5364c7a24..fb9e340669f 100644
--- a/usr.bin/ssh/sshd.c
+++ b/usr.bin/ssh/sshd.c
@@ -40,7 +40,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sshd.c,v 1.151 2001/01/18 15:54:49 markus Exp $");
+RCSID("$OpenBSD: sshd.c,v 1.152 2001/01/18 16:20:22 markus Exp $");
#include "xmalloc.h"
#include "rsa.h"
@@ -653,7 +653,7 @@ main(int ac, char **av)
* key (unless started from inetd)
*/
log_init(__progname,
- options.log_level == -1 ? SYSLOG_LEVEL_NOTICE : options.log_level,
+ options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
!silent && !inetd_flag);