diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:14:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:14:08 +0000 |
commit | cbe31dace5fb24304694d399b9eb267fbe752516 (patch) | |
tree | 49d1bb722d95eb1aded6b5d354ac86e56c481c10 /sysklogd/logger.c | |
parent | 94456f598417f2f61edb97b5ab67ddfdc408ad10 (diff) | |
download | busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.tar.gz busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.tar.bz2 busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.zip |
It turns out that DODMALLOC was broken when I reorganized busybox.h
header file usage before the 0.49 release. To fix it, I had to move
the '#include "busybox.h"' to the end of the list of #include files.
-Erik
Diffstat (limited to 'sysklogd/logger.c')
-rw-r--r-- | sysklogd/logger.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysklogd/logger.c b/sysklogd/logger.c index 352bde158..1218d8d2e 100644 --- a/sysklogd/logger.c +++ b/sysklogd/logger.c | |||
@@ -21,7 +21,6 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "busybox.h" | ||
25 | #include <stdio.h> | 24 | #include <stdio.h> |
26 | #include <unistd.h> | 25 | #include <unistd.h> |
27 | #include <sys/types.h> | 26 | #include <sys/types.h> |
@@ -30,6 +29,7 @@ | |||
30 | #include <string.h> | 29 | #include <string.h> |
31 | #include <stdlib.h> | 30 | #include <stdlib.h> |
32 | 31 | ||
32 | #include "busybox.h" | ||
33 | #if !defined BB_SYSLOGD | 33 | #if !defined BB_SYSLOGD |
34 | 34 | ||
35 | #define SYSLOG_NAMES | 35 | #define SYSLOG_NAMES |
@@ -40,6 +40,7 @@ | |||
40 | * structures. Argh.... bad libc, bad, bad... | 40 | * structures. Argh.... bad libc, bad, bad... |
41 | */ | 41 | */ |
42 | #include <sys/syslog.h> | 42 | #include <sys/syslog.h> |
43 | |||
43 | typedef struct _code { | 44 | typedef struct _code { |
44 | char *c_name; | 45 | char *c_name; |
45 | int c_val; | 46 | int c_val; |