diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-17 19:18:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-17 19:18:06 +0000 |
commit | 1b97efd66aecdd79fa6501bc90aefe9998464347 (patch) | |
tree | 8587f85eaefb2223f4542abcdd8e4fa21647829b /include | |
parent | 72d260dbdac310f59d9df5bc32e69abaa3d15dfd (diff) | |
download | busybox-1b97efd66aecdd79fa6501bc90aefe9998464347.tar.gz |
httpd shring and logging update, part 1 or 7
text data bss dec hex filename
9836 0 0 9836 266c busybox.t1/networking/httpd.o.orig
9724 0 0 9724 25fc busybox.t2/networking/httpd.o
9657 0 0 9657 25b9 busybox.t3/networking/httpd.o
9342 0 0 9342 247e busybox.t4/networking/httpd.o
9342 0 0 9342 247e busybox.t5/networking/httpd.o
9262 0 0 9262 242e busybox.t6/networking/httpd.o
9283 0 0 9283 2443 busybox.t7/networking/httpd.o
9334 0 0 9334 2476 busybox.t8/networking/httpd.o
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 912505026..52bc33940 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -642,8 +642,8 @@ enum { wrote_pidfile = 0 }; enum { LOGMODE_NONE = 0, - LOGMODE_STDIO = 1<<0, - LOGMODE_SYSLOG = 1<<1, + LOGMODE_STDIO = (1 << 0), + LOGMODE_SYSLOG = (1 << 1) * ENABLE_FEATURE_SYSLOG, LOGMODE_BOTH = LOGMODE_SYSLOG + LOGMODE_STDIO, }; extern const char *msg_eol; |