diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-02-27 18:50:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-02-27 18:50:10 +0000 |
commit | 420ce8bf170eaff4099ea17f0146b3fbddcc8818 (patch) | |
tree | 4d5958961f8ca0800ab22172a2d5ed52027ac6cc /usr.bin/ssh/log-server.c | |
parent | 4a611e417604c98955460ceb9293c866488ed8be (diff) |
rename a cpp symbol, to avoid param.h collision
Diffstat (limited to 'usr.bin/ssh/log-server.c')
-rw-r--r-- | usr.bin/ssh/log-server.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/log-server.c b/usr.bin/ssh/log-server.c index 52f56a307e8..124d7fe6b69 100644 --- a/usr.bin/ssh/log-server.c +++ b/usr.bin/ssh/log-server.c @@ -15,7 +15,7 @@ */ #include "includes.h" -RCSID("$Id: log-server.c,v 1.11 1999/11/24 00:26:02 deraadt Exp $"); +RCSID("$Id: log-server.c,v 1.12 2000/02/27 18:50:09 deraadt Exp $"); #include <syslog.h> #include "packet.h" @@ -91,13 +91,13 @@ log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr) log_on_stderr = on_stderr; } -#define MSGBUFSIZE 1024 +#define MSGBUFSIZ 1024 void do_log(LogLevel level, const char *fmt, va_list args) { - char msgbuf[MSGBUFSIZE]; - char fmtbuf[MSGBUFSIZE]; + char msgbuf[MSGBUFSIZ]; + char fmtbuf[MSGBUFSIZ]; char *txt = NULL; int pri = LOG_INFO; extern char *__progname; |