diff options
author | Denis Vlasenko | 2006-09-07 16:03:45 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-07 16:03:45 +0000 |
commit | b750dec40a4bf013f98658b46925117d9d1d4811 (patch) | |
tree | 780f2019be61906fa1f7410bca8538a695bddf95 | |
parent | 049d6b8c0812b20c024d714a9008cc94713a6175 (diff) | |
download | busybox-b750dec40a4bf013f98658b46925117d9d1d4811.zip busybox-b750dec40a4bf013f98658b46925117d9d1d4811.tar.gz |
fix if (ENABLE_FEATURE_SYSLOG & (...)) - should be &&
-rw-r--r-- | libbb/verror_msg.c | 2 | ||||
-rw-r--r-- | libbb/vinfo_msg.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libbb/verror_msg.c b/libbb/verror_msg.c index be206e4..d55da73 100644 --- a/libbb/verror_msg.c +++ b/libbb/verror_msg.c @@ -32,7 +32,7 @@ void bb_verror_msg(const char *s, va_list p, const char* strerr) else fprintf(stderr, ": %s\n", strerr); } - if (ENABLE_FEATURE_SYSLOG & (logmode & LOGMODE_SYSLOG)) { + if (ENABLE_FEATURE_SYSLOG && (logmode & LOGMODE_SYSLOG)) { if (!strerr) vsyslog(LOG_ERR, s, p2); else { diff --git a/libbb/vinfo_msg.c b/libbb/vinfo_msg.c index 84825bc..82fbda2 100644 --- a/libbb/vinfo_msg.c +++ b/libbb/vinfo_msg.c @@ -24,7 +24,7 @@ void bb_vinfo_msg(const char *s, va_list p) vprintf(s, p); putchar('\n'); } - if (ENABLE_FEATURE_SYSLOG & (logmode & LOGMODE_SYSLOG)) + if (ENABLE_FEATURE_SYSLOG && (logmode & LOGMODE_SYSLOG)) vsyslog(LOG_INFO, s, p2); va_end(p2); } |