diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-08-02 10:38:11 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-22 02:26:05 +0100 |
commit | 4ed0af7013a8885e7c18d7ed532b16c5be5f2df9 (patch) | |
tree | fe7784732eff1c51ae06c5e52ebde044d489c516 /pimd/pim_join.h | |
parent | pimd: Add rs_timer display (diff) | |
download | frr-4ed0af7013a8885e7c18d7ed532b16c5be5f2df9.tar.xz frr-4ed0af7013a8885e7c18d7ed532b16c5be5f2df9.zip |
lib, pimd: Fix borked up prefix code
Fix the struct prefix to be an actual struct prefix_sg.
This cleans up a bunch of code to make it look nicer.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_join.h')
-rw-r--r-- | pimd/pim_join.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_join.h b/pimd/pim_join.h index 6777587c3..e6bddf31b 100644 --- a/pimd/pim_join.h +++ b/pimd/pim_join.h @@ -35,7 +35,7 @@ int pim_joinprune_recv(struct interface *ifp, int pim_joinprune_send(struct interface *ifp, struct in_addr upstream_addr, - struct prefix *sg, + struct prefix_sg *sg, int send_join); #endif /* PIM_JOIN_H */ |