diff options
author | 2001-06-26 17:27:22 +0000 | |
---|---|---|
committer | 2001-06-26 17:27:22 +0000 | |
commit | c1d304b2b0ff1c424ac8d220ba1f16ef30071603 (patch) | |
tree | b0f9ed5380dd8504fca4a97449df73de1eebd627 /usr.bin/ssh/log.c | |
parent | document SSH_ASKPASS; fubob@MIT.EDU (diff) | |
download | wireguard-openbsd-c1d304b2b0ff1c424ac8d220ba1f16ef30071603.tar.xz wireguard-openbsd-c1d304b2b0ff1c424ac8d220ba1f16ef30071603.zip |
remove comments from .h, since they are cut&paste from the .c files
and out of sync
Diffstat (limited to 'usr.bin/ssh/log.c')
-rw-r--r-- | usr.bin/ssh/log.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/ssh/log.c b/usr.bin/ssh/log.c index 34b4eb96158..e10bf813cd4 100644 --- a/usr.bin/ssh/log.c +++ b/usr.bin/ssh/log.c @@ -34,7 +34,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: log.c,v 1.17 2001/03/04 17:42:28 millert Exp $"); +RCSID("$OpenBSD: log.c,v 1.18 2001/06/26 17:27:23 markus Exp $"); #include "log.h" #include "xmalloc.h" @@ -85,6 +85,8 @@ static struct { { NULL, 0 } }; +static void do_log(LogLevel level, const char *fmt, va_list args); + SyslogFacility log_facility_number(char *name) { @@ -318,7 +320,7 @@ log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr) #define MSGBUFSIZ 1024 -void +static void do_log(LogLevel level, const char *fmt, va_list args) { char msgbuf[MSGBUFSIZ]; |