summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-keygen.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2004-07-11 17:48:47 +0000
committerderaadt <deraadt@openbsd.org>2004-07-11 17:48:47 +0000
commit7a75adb6747c5805ed4cff0e320d61e52b24df32 (patch)
treec43f946bf2fba0c40419f8f0ff08f5f534b3df84 /usr.bin/ssh/ssh-keygen.c
parentMake newsyslog(8) deal correctly with a count of 0 in newsyslog.conf. (diff)
downloadwireguard-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.c4
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++;
}