]> andersk Git - openssh.git/blobdiff - log.c
Please grep through the source and look for 'ISSUE' comments and verify
[openssh.git] / log.c
diff --git a/log.c b/log.c
index e13cc90ceb3d41978f1b303d97315703beb5cb0a..9df2a93fd36185725df5ff07aedeed62b857969f 100644 (file)
--- a/log.c
+++ b/log.c
@@ -36,7 +36,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: log.c,v 1.13 2001/01/07 11:28:05 markus Exp $");
+RCSID("$OpenBSD: log.c,v 1.14 2001/01/18 16:20:21 markus Exp $");
 
 #include "ssh.h"
 #include "xmalloc.h"
@@ -71,7 +71,7 @@ log(const char *fmt,...)
 {
        va_list args;
        va_start(args, fmt);
-       do_log(SYSLOG_LEVEL_NOTICE, fmt, args);
+       do_log(SYSLOG_LEVEL_INFO, fmt, args);
        va_end(args);
 }
 
@@ -209,13 +209,12 @@ static struct {
        { "QUIET",      SYSLOG_LEVEL_QUIET },
        { "FATAL",      SYSLOG_LEVEL_FATAL },
        { "ERROR",      SYSLOG_LEVEL_ERROR },
-       { "NOTICE",     SYSLOG_LEVEL_NOTICE },
+       { "INFO",       SYSLOG_LEVEL_INFO },
        { "VERBOSE",    SYSLOG_LEVEL_VERBOSE },
        { "DEBUG",      SYSLOG_LEVEL_DEBUG1 },
        { "DEBUG1",     SYSLOG_LEVEL_DEBUG1 },
        { "DEBUG2",     SYSLOG_LEVEL_DEBUG2 },
        { "DEBUG3",     SYSLOG_LEVEL_DEBUG3 },
-       { "INFO",       SYSLOG_LEVEL_NOTICE },  /* backward compatible */
        { NULL, 0 }
 };
 
This page took 0.02484 seconds and 4 git commands to generate.