diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-01-18 16:20:23 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-01-18 16:20:23 +0000 |
commit | a4691d42f749de19890823deb77459b3bd91c42a (patch) | |
tree | f44ecb5df406cdda7300bb4904feccd7a629211a /usr.bin/ssh/ssh.h | |
parent | 53434c6ef5db5f64d77ee011becf8300095b66ec (diff) |
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, |