diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-07-26 00:55:47 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-07-26 00:55:47 +0200 |
commit | 88177fe3eddaf0bad82e85b87556ace1eefbe361 (patch) | |
tree | 9a0fdb5b0aa139350310b19cff1c8dba8f07311d /zebra/zebra_ptm_redistribute.c | |
parent | Fix bugs reported by coverity scan (diff) | |
download | frr-88177fe3eddaf0bad82e85b87556ace1eefbe361.tar.xz frr-88177fe3eddaf0bad82e85b87556ace1eefbe361.zip |
Fixup of warnings in the code
Ticket: None
Reviewed by: Trivial
Testing:
A bunch of warnings have crept in to the code base. This
fixes the issue
Diffstat (limited to 'zebra/zebra_ptm_redistribute.c')
-rw-r--r-- | zebra/zebra_ptm_redistribute.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/zebra/zebra_ptm_redistribute.c b/zebra/zebra_ptm_redistribute.c index 40394f059..6166fc002 100644 --- a/zebra/zebra_ptm_redistribute.c +++ b/zebra/zebra_ptm_redistribute.c @@ -24,11 +24,12 @@ #include "vty.h" #include "stream.h" #include "zebra/zserv.h" +#include "zebra/zebra_ptm_redistribute.h" /* master zebra server structure */ extern struct zebra_t zebrad; -int +static int zsend_interface_bfd_update (int cmd, struct zserv *client, struct interface *ifp, struct prefix *dp, struct prefix *sp) @@ -88,7 +89,7 @@ zebra_interface_bfd_update (struct interface *ifp, struct prefix *dp, } } -int +static int zsend_bfd_peer_replay (int cmd, struct zserv *client) { struct stream *s; |