The OPT_locallog was set on "option_mask32" but checked on local "opts" variable. While this flag it's used on multiple places can't be has to be used with "option_mask32". Without this change syslogd is more-less unusable while no messages are logged locally.
Signed-off-by: Andrej Valek <[email protected]> --- sysklogd/syslogd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 7558051f0..fa03aa280 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c @@ -1179,7 +1179,7 @@ int syslogd_main(int argc UNUSED_PARAM, char **argv) } } #endif - if (!ENABLE_FEATURE_REMOTE_LOG || (opts & OPT_locallog)) { + if (!ENABLE_FEATURE_REMOTE_LOG || (option_mask32 & OPT_locallog)) { recvbuf[sz] = '\0'; /* ensure it *is* NUL terminated */ split_escape_and_log(recvbuf, sz); } -- 2.34.1 _______________________________________________ busybox mailing list [email protected] https://lists.busybox.net/mailman/listinfo/busybox
