summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2000-09-30 16:27:43 +0000
committermarkus <markus@openbsd.org>2000-09-30 16:27:43 +0000
commit18beaaae82c6c09357fe0f556d786a46deccfabc (patch)
treea2e7730654df91d10dbc655599f30c0890099fd7
parentMake it obvious that open(2) returns ELOOP if O_NOFOLLOW was specified (diff)
downloadwireguard-openbsd-18beaaae82c6c09357fe0f556d786a46deccfabc.tar.xz
wireguard-openbsd-18beaaae82c6c09357fe0f556d786a46deccfabc.zip
allow loglevel debug
-rw-r--r--usr.bin/ssh/log.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/log.c b/usr.bin/ssh/log.c
index 13033ab4260..ce89c59ba82 100644
--- a/usr.bin/ssh/log.c
+++ b/usr.bin/ssh/log.c
@@ -36,7 +36,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: log.c,v 1.10 2000/09/12 20:53:10 markus Exp $");
+RCSID("$OpenBSD: log.c,v 1.11 2000/09/30 16:27:43 markus Exp $");
#include "ssh.h"
#include "xmalloc.h"
@@ -208,6 +208,7 @@ static struct {
{ "ERROR", SYSLOG_LEVEL_ERROR },
{ "INFO", SYSLOG_LEVEL_INFO },
{ "VERBOSE", SYSLOG_LEVEL_VERBOSE },
+ { "DEBUG", SYSLOG_LEVEL_DEBUG1 },
{ "DEBUG1", SYSLOG_LEVEL_DEBUG1 },
{ "DEBUG2", SYSLOG_LEVEL_DEBUG2 },
{ "DEBUG3", SYSLOG_LEVEL_DEBUG3 },