diff options
author | 2001-01-18 16:20:21 +0000 | |
---|---|---|
committer | 2001-01-18 16:20:21 +0000 | |
commit | 882d1914f8e25cf39958ba657f0a59f899e34636 (patch) | |
tree | ea90bbf79a0c9db15510c31e6b4680ceb9d647fc /usr.bin/ssh/ssh.h | |
parent | don't call rsa-keygen from signalhandler. (diff) | |
download | wireguard-openbsd-882d1914f8e25cf39958ba657f0a59f899e34636.tar.xz wireguard-openbsd-882d1914f8e25cf39958ba657f0a59f899e34636.zip |
log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many systems
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r-- | usr.bin/ssh/ssh.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h index 5c3cdbf594f..30fa28bfda2 100644 --- a/usr.bin/ssh/ssh.h +++ b/usr.bin/ssh/ssh.h @@ -12,7 +12,7 @@ * called by a name other than "ssh" or "Secure Shell". */ -/* RCSID("$OpenBSD: ssh.h,v 1.57 2001/01/07 11:28:06 markus Exp $"); */ +/* RCSID("$OpenBSD: ssh.h,v 1.58 2001/01/18 16:20:22 markus Exp $"); */ #ifndef SSH_H #define SSH_H @@ -398,7 +398,7 @@ typedef enum { SYSLOG_LEVEL_QUIET, SYSLOG_LEVEL_FATAL, SYSLOG_LEVEL_ERROR, - SYSLOG_LEVEL_NOTICE, + SYSLOG_LEVEL_INFO, SYSLOG_LEVEL_VERBOSE, SYSLOG_LEVEL_DEBUG1, SYSLOG_LEVEL_DEBUG2, |