diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-11 14:31:35 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-24 00:09:22 +0200 |
commit | e4bd522a3144bcdad9124cf7d8ca2f4eadacb3e4 (patch) | |
tree | 23f02f8d610618ca94a38834e2885bb5944119f3 /zebra/zebra_mroute.c | |
parent | zebra: Always read full zapi message in ptm code (diff) | |
download | frr-e4bd522a3144bcdad9124cf7d8ca2f4eadacb3e4.tar.xz frr-e4bd522a3144bcdad9124cf7d8ca2f4eadacb3e4.zip |
zebra: No need to pass sock descriptor around.
Standardize the api to read zapi requests from protocols.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_mroute.c')
-rw-r--r-- | zebra/zebra_mroute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_mroute.c b/zebra/zebra_mroute.c index 75d5d5d62..8fa00b83c 100644 --- a/zebra/zebra_mroute.c +++ b/zebra/zebra_mroute.c @@ -32,7 +32,7 @@ #include "zebra/rt.h" #include "zebra/debug.h" -int zebra_ipmr_route_stats(struct zserv *client, int fd, u_short length, +int zebra_ipmr_route_stats(struct zserv *client, u_short length, struct zebra_vrf *zvrf) { struct mcast_route_data mroute; |