summaryrefslogtreecommitdiffstats
path: root/babeld/babel_interface.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-05-14 04:46:21 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-05-14 04:46:21 +0200
commitdd15627e26f3fc7ecbc97eb9bc5bb5d16e422cfb (patch)
tree86ccbb73534c8974fd866867b4db0d2e9e0769a3 /babeld/babel_interface.c
parentdoc: Missed babel documentation (diff)
downloadfrr-dd15627e26f3fc7ecbc97eb9bc5bb5d16e422cfb.tar.xz
frr-dd15627e26f3fc7ecbc97eb9bc5bb5d16e422cfb.zip
babeld: Cleanup xroute_stream
Cleanup warnings associated with xroute_stream Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'babeld/babel_interface.c')
-rw-r--r--babeld/babel_interface.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/babeld/babel_interface.c b/babeld/babel_interface.c
index ffbc9949b..2c2b5187c 100644
--- a/babeld/babel_interface.c
+++ b/babeld/babel_interface.c
@@ -1063,7 +1063,7 @@ DEFUN (show_babel_route,
} else {
zlog_err("Couldn't allocate route stream.");
}
- xroutes = xroute_stream(0);
+ xroutes = xroute_stream();
if(xroutes) {
while(1) {
struct xroute *xroute = xroute_stream_next(xroutes);
@@ -1109,7 +1109,7 @@ DEFUN (show_babel_route_prefix,
} else {
zlog_err("Couldn't allocate route stream.");
}
- xroutes = xroute_stream(0);
+ xroutes = xroute_stream();
if(xroutes) {
while(1) {
struct xroute *xroute = xroute_stream_next(xroutes);
@@ -1166,7 +1166,7 @@ DEFUN (show_babel_route_addr,
} else {
zlog_err("Couldn't allocate route stream.");
}
- xroutes = xroute_stream(0);
+ xroutes = xroute_stream();
if(xroutes) {
while(1) {
struct xroute *xroute = xroute_stream_next(xroutes);
@@ -1224,7 +1224,7 @@ DEFUN (show_babel_route_addr6,
} else {
zlog_err("Couldn't allocate route stream.");
}
- xroutes = xroute_stream(0);
+ xroutes = xroute_stream();
if(xroutes) {
while(1) {
struct xroute *xroute = xroute_stream_next(xroutes);