Latest and greatest. Some effort at libc5 (aiming towards newlib)

compatability.
 -Erik
This commit is contained in:
Erik Andersen
2000-04-28 00:18:56 +00:00
parent 227a59b05d
commit 4f3f757d56
46 changed files with 280 additions and 172 deletions

View File

@ -53,7 +53,7 @@ extern int ksyslog(int type, char *buf, int len);
#define __LOG_FILE "/var/log/messages"
/* Path to the unix socket */
char lfile[PATH_MAX] = "";
char lfile[BUFSIZ] = "";
static char *logFilePath = __LOG_FILE;
@ -177,7 +177,7 @@ static void doSyslogd (void)
int sock_fd;
fd_set fds;
char lfile[PATH_MAX];
char lfile[BUFSIZ];
/* Set up signal handlers. */
signal (SIGINT, quit_signal);