Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-07 20:03:45 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-07 20:03:45 +0400
commitb750dec40a4bf013f98658b46925117d9d1d4811 (patch)
tree780f2019be61906fa1f7410bca8538a695bddf95 /libbb/verror_msg.c
parent049d6b8c0812b20c024d714a9008cc94713a6175 (diff)
fix if (ENABLE_FEATURE_SYSLOG & (...)) - should be &&
Diffstat (limited to 'libbb/verror_msg.c')
-rw-r--r--libbb/verror_msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/verror_msg.c b/libbb/verror_msg.c
index be206e477..d55da73ff 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 {