summaryrefslogtreecommitdiff
path: root/libdaemon/server/daemon-log.c
diff options
context:
space:
mode:
Diffstat (limited to 'libdaemon/server/daemon-log.c')
-rw-r--r--libdaemon/server/daemon-log.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libdaemon/server/daemon-log.c b/libdaemon/server/daemon-log.c
index 87ad54763..c1765de3f 100644
--- a/libdaemon/server/daemon-log.c
+++ b/libdaemon/server/daemon-log.c
@@ -1,7 +1,6 @@
#include "daemon-server.h"
#include "daemon-log.h"
#include <syslog.h>
-#include <assert.h>
struct backend {
int id;
@@ -129,7 +128,9 @@ void daemon_log_multi(log_state *s, int type, const char *prefix, const char *ms
void daemon_log_enable(log_state *s, int outlet, int type, int enable)
{
- assert(type < 32);
+ if (type >= 32)
+ return;
+
if (enable)
s->log_config[type] |= outlet;
else