From: Quentin Young Date: Fri, 17 Jun 2016 19:59:12 +0000 (-0400) Subject: Fix missing parameter in call to openzlog X-Git-Tag: frr-2.0-rc1~523 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=34be90949f3872e55d69515be6ccf9df012e9488;p=matthieu%2Ffrr.git Fix missing parameter in call to openzlog --- diff --git a/tests/common-cli.c b/tests/common-cli.c index 7135856e99..7c34e6a559 100644 --- a/tests/common-cli.c +++ b/tests/common-cli.c @@ -63,7 +63,7 @@ main (int argc, char **argv) /* master init. */ master = thread_master_create (); - zlog_default = openzlog ("common-cli", ZLOG_NONE, + zlog_default = openzlog ("common-cli", ZLOG_NONE, 0, LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON); zlog_set_level (NULL, ZLOG_DEST_SYSLOG, ZLOG_DISABLED); zlog_set_level (NULL, ZLOG_DEST_STDOUT, ZLOG_DISABLED);