summaryrefslogtreecommitdiff
path: root/zebra/zebra_rib.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2016-02-23 11:59:36 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2017-03-08 00:15:39 +0100
commitbb85d700d564ef836af88c9d17190c2c39b93e21 (patch)
treeab62aa870ed3661104142ffa8556e40479ce4b46 /zebra/zebra_rib.c
parent4525281af19b5800ffce4bda83e0957d21ccad43 (diff)
lib: ditch struct zlog * argument on zlog/vzlog()
It's completely useless... Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra/zebra_rib.c')
-rw-r--r--zebra/zebra_rib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c
index 56a5f8e582..2dba64c5bd 100644
--- a/zebra/zebra_rib.c
+++ b/zebra/zebra_rib.c
@@ -111,7 +111,7 @@ _rnode_zlog(const char *_func, vrf_id_t vrf_id, struct route_node *rn, int prior
snprintf(buf, sizeof(buf), "{(route_node *) NULL}");
}
- zlog (NULL, priority, "%s: %d:%s: %s", _func, vrf_id, buf, msgbuf);
+ zlog (priority, "%s: %d:%s: %s", _func, vrf_id, buf, msgbuf);
}
#define rnode_debug(node, vrf_id, ...) \