diff options
author | 2001-01-07 11:28:04 +0000 | |
---|---|---|
committer | 2001-01-07 11:28:04 +0000 | |
commit | 8de9cd5060fe78c1361368895caee008e76b8fdf (patch) | |
tree | b4b970ee1de7acb01449155fcab7433b1a488edf /usr.bin/ssh/ssh.h | |
parent | Make the -P option effective (rjmooney@mediaone.net) (diff) | |
download | wireguard-openbsd-8de9cd5060fe78c1361368895caee008e76b8fdf.tar.xz wireguard-openbsd-8de9cd5060fe78c1361368895caee008e76b8fdf.zip |
rename SYSLOG_LEVEL_INFO->SYSLOG_LEVEL_NOTICE
syslog priority changes:
fatal() LOG_ERR -> LOG_CRIT
log() LOG_INFO -> LOG_NOTICE
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 b3252639ecf..5c3cdbf594f 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.56 2000/12/19 23:17:58 markus Exp $"); */ +/* RCSID("$OpenBSD: ssh.h,v 1.57 2001/01/07 11:28:06 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_INFO, + SYSLOG_LEVEL_NOTICE, SYSLOG_LEVEL_VERBOSE, SYSLOG_LEVEL_DEBUG1, SYSLOG_LEVEL_DEBUG2, |