diff options
author | David Lamparter <equinox@diac24.net> | 2016-02-23 12:49:45 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-03-08 00:15:40 +0100 |
commit | dd8376febd9523cf0e7263b9e5100f8af718d2b5 (patch) | |
tree | 68f2d46e633d212b8bf4045444c8242b636b091c /ldpd/ldpd.c | |
parent | lib: simplify protocol/log naming (diff) | |
download | frr-dd8376febd9523cf0e7263b9e5100f8af718d2b5.tar.xz frr-dd8376febd9523cf0e7263b9e5100f8af718d2b5.zip |
lib: remove remaining struct zlog * args
These don't serve any purpose either.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ldpd/ldpd.c')
-rw-r--r-- | ldpd/ldpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldpd/ldpd.c b/ldpd/ldpd.c index dc263875e..98ea5ca53 100644 --- a/ldpd/ldpd.c +++ b/ldpd/ldpd.c @@ -141,7 +141,7 @@ sigint(void) static void sigusr1(void) { - zlog_rotate(NULL); + zlog_rotate(); } static struct quagga_signal_t ldp_signals[] = |