diff options
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 }; | |||
| 642 | 642 | ||
| 643 | enum { | 643 | enum { |
| 644 | LOGMODE_NONE = 0, | 644 | LOGMODE_NONE = 0, |
| 645 | LOGMODE_STDIO = 1<<0, | 645 | LOGMODE_STDIO = (1 << 0), |
| 646 | LOGMODE_SYSLOG = 1<<1, | 646 | LOGMODE_SYSLOG = (1 << 1) * ENABLE_FEATURE_SYSLOG, |
| 647 | LOGMODE_BOTH = LOGMODE_SYSLOG + LOGMODE_STDIO, | 647 | LOGMODE_BOTH = LOGMODE_SYSLOG + LOGMODE_STDIO, |
| 648 | }; | 648 | }; |
| 649 | extern const char *msg_eol; | 649 | extern const char *msg_eol; |
