summaryrefslogtreecommitdiffstats
path: root/zebra/zebra_mroute.h
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2018-03-06 23:01:42 +0100
committerQuentin Young <qlyoung@cumulusnetworks.com>2018-03-12 19:57:05 +0100
commit8068a649a79409737dfa5235a84915b544d4fff7 (patch)
tree3c5dff3b68589522e502c66519140b6124de1a28 /zebra/zebra_mroute.h
parenttests: add unit test for zlog (diff)
downloadfrr-8068a649a79409737dfa5235a84915b544d4fff7.tar.xz
frr-8068a649a79409737dfa5235a84915b544d4fff7.zip
zebra: dont return a status code in zapi handlers
All of the ZAPI message handlers return an integer that means different things to each of them, but nobody ever reads these integers, so this is technical debt that we can just eliminate outright. Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_mroute.h')
-rw-r--r--zebra/zebra_mroute.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_mroute.h b/zebra/zebra_mroute.h
index 616c3a83a..5bee7b03d 100644
--- a/zebra/zebra_mroute.h
+++ b/zebra/zebra_mroute.h
@@ -28,7 +28,7 @@ struct mcast_route_data {
unsigned long long lastused;
};
-int zebra_ipmr_route_stats(struct zserv *client, u_short length,
- struct zebra_vrf *zvf);
+void zebra_ipmr_route_stats(struct zserv *client, u_short length,
+ struct zebra_vrf *zvf);
#endif