diff options
author | Matt Kraai <kraai@debian.org> | 2001-07-06 19:28:07 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-07-06 19:28:07 +0000 |
commit | c308847274aa289344994cec31bc4b528f59e04e (patch) | |
tree | efce00c99dfb918da19200fbc62abc5c3803cdd0 /sysklogd | |
parent | 00e56ada9cd67851d8ff3a9660c6e4fd7816a266 (diff) | |
download | busybox-w32-c308847274aa289344994cec31bc4b528f59e04e.tar.gz busybox-w32-c308847274aa289344994cec31bc4b528f59e04e.tar.bz2 busybox-w32-c308847274aa289344994cec31bc4b528f59e04e.zip |
Remove redundant initialization of lfile to reduce executable size by
8192 bytes (noted by Mike Castle).
Diffstat (limited to 'sysklogd')
-rw-r--r-- | sysklogd/syslogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 89f5348ec..d334c50c9 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c | |||
@@ -55,7 +55,7 @@ | |||
55 | #define __LOG_FILE "/var/log/messages" | 55 | #define __LOG_FILE "/var/log/messages" |
56 | 56 | ||
57 | /* Path to the unix socket */ | 57 | /* Path to the unix socket */ |
58 | static char lfile[BUFSIZ] = ""; | 58 | static char lfile[BUFSIZ]; |
59 | 59 | ||
60 | static char *logFilePath = __LOG_FILE; | 60 | static char *logFilePath = __LOG_FILE; |
61 | 61 | ||