diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-17 20:53:21 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-17 20:53:21 -0400 |
| commit | 9df994075b757c809177ffd97d74c13d7952b276 (patch) | |
| tree | 84fa6353c80d1ed98cca531d89390931c5bacc00 /pimd/pim_sock.c | |
| parent | 744d91b3c6bfec40f78f97be34a2301dc9a5fbf5 (diff) | |
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 2bb48f75a5..278a0972f8 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" |
