diff options
author | 2004-07-11 17:48:47 +0000 | |
---|---|---|
committer | 2004-07-11 17:48:47 +0000 | |
commit | 7a75adb6747c5805ed4cff0e320d61e52b24df32 (patch) | |
tree | c43f946bf2fba0c40419f8f0ff08f5f534b3df84 /usr.bin/ssh/ssh-keygen.c | |
parent | Make newsyslog(8) deal correctly with a count of 0 in newsyslog.conf. (diff) | |
download | wireguard-openbsd-7a75adb6747c5805ed4cff0e320d61e52b24df32.tar.xz wireguard-openbsd-7a75adb6747c5805ed4cff0e320d61e52b24df32.zip |
spaces
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 6e4ec347b24..54f70dda938 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keygen.c,v 1.116 2004/06/21 17:36:31 avsm Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.117 2004/07/11 17:48:47 deraadt Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -890,7 +890,7 @@ main(int ac, char **av) if (log_level == SYSLOG_LEVEL_INFO) log_level = SYSLOG_LEVEL_DEBUG1; else { - if (log_level >= SYSLOG_LEVEL_DEBUG1 && + if (log_level >= SYSLOG_LEVEL_DEBUG1 && log_level < SYSLOG_LEVEL_DEBUG3) log_level++; } |