Remove redundant initialization of lfile to reduce executable size by

8192 bytes (noted by Mike Castle).
This commit is contained in:
Matt Kraai 2001-07-06 19:28:07 +00:00
parent 00e56ada9c
commit c308847274
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;