commit | c308847274aa289344994cec31bc4b528f59e04e | [log] [tgz] |
---|---|---|
author | Matt Kraai <kraai@debian.org> | Fri Jul 06 19:28:07 2001 +0000 |
committer | Matt Kraai <kraai@debian.org> | Fri Jul 06 19:28:07 2001 +0000 |
tree | efce00c99dfb918da19200fbc62abc5c3803cdd0 | |
parent | 00e56ada9cd67851d8ff3a9660c6e4fd7816a266 [diff] [blame] |
Remove redundant initialization of lfile to reduce executable size by 8192 bytes (noted by Mike Castle).
diff --git a/syslogd.c b/syslogd.c index 89f5348..d334c50 100644 --- a/syslogd.c +++ b/syslogd.c
@@ -55,7 +55,7 @@ #define __LOG_FILE "/var/log/messages" /* Path to the unix socket */ -static char lfile[BUFSIZ] = ""; +static char lfile[BUFSIZ]; static char *logFilePath = __LOG_FILE;