diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-18 02:53:21 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-18 02:53:21 +0200 |
commit | 9df994075b757c809177ffd97d74c13d7952b276 (patch) | |
tree | 84fa6353c80d1ed98cca531d89390931c5bacc00 /pimd/pim_sock.c | |
parent | pimd: Separate pim vif index spot from ifindex (diff) | |
download | frr-9df994075b757c809177ffd97d74c13d7952b276.tar.xz frr-9df994075b757c809177ffd97d74c13d7952b276.zip |
pimd: Apparently compilers are evil
Fix up some compiler issues from clang to gcc.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_sock.c')
-rw-r--r-- | pimd/pim_sock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pimd/pim_sock.c b/pimd/pim_sock.c index 2bb48f75a..278a0972f 100644 --- a/pimd/pim_sock.c +++ b/pimd/pim_sock.c @@ -21,7 +21,6 @@ */ #include <zebra.h> -#include "pim_mroute.h" #include <sys/types.h> #include <sys/socket.h> @@ -34,8 +33,10 @@ #include "log.h" #include "privs.h" +#include "if.h" #include "pimd.h" +#include "pim_mroute.h" #include "pim_sock.h" #include "pim_str.h" #include "pim_igmp_join.h" |