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 /ripd/rip_main.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 'ripd/rip_main.c')
-rw-r--r-- | ripd/rip_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripd/rip_main.c b/ripd/rip_main.c index a9382d942..62ea6dd07 100644 --- a/ripd/rip_main.c +++ b/ripd/rip_main.c @@ -108,7 +108,7 @@ sigint (void) static void sigusr1 (void) { - zlog_rotate (NULL); + zlog_rotate(); } static struct quagga_signal_t ripd_signals[] = |