summaryrefslogtreecommitdiff
path: root/sysklogd
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-07-06 19:28:07 +0000
committerMatt Kraai <kraai@debian.org>2001-07-06 19:28:07 +0000
commitc308847274aa289344994cec31bc4b528f59e04e (patch)
treeefce00c99dfb918da19200fbc62abc5c3803cdd0 /sysklogd
parent00e56ada9cd67851d8ff3a9660c6e4fd7816a266 (diff)
downloadbusybox-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.c2
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 */
58static char lfile[BUFSIZ] = ""; 58static char lfile[BUFSIZ];
59 59
60static char *logFilePath = __LOG_FILE; 60static char *logFilePath = __LOG_FILE;
61 61