diff options
author | paul <paul> | 2004-08-19 06:45:33 +0200 |
---|---|---|
committer | paul <paul> | 2004-08-19 06:45:33 +0200 |
commit | 0de1cde6e602e7496628967aeb219cd28d4869a9 (patch) | |
tree | a9e15f53ed1196396d9f3370a42ccbd4b2aaf21e /zebra/irdp_packet.c | |
parent | 2004-08-19 Paul Jakma <paul@dishone.st> (diff) | |
download | frr-0de1cde6e602e7496628967aeb219cd28d4869a9.tar.xz frr-0de1cde6e602e7496628967aeb219cd28d4869a9.zip |
2004-08-19 Paul Jakma <paul@dishone.st>
* irdp_main.c: update to match sockopt renames.
* irdp_packet.c: include sockopt.h and update to match sockopt
renames.
Diffstat (limited to 'zebra/irdp_packet.c')
-rw-r--r-- | zebra/irdp_packet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/irdp_packet.c b/zebra/irdp_packet.c index e881ef937..8cd3dad65 100644 --- a/zebra/irdp_packet.c +++ b/zebra/irdp_packet.c @@ -61,7 +61,7 @@ #include "if.h" #include "sockunion.h" #include "log.h" - +#include "sockopt.h" /* GLOBAL VARS */ @@ -214,7 +214,7 @@ int irdp_recvmsg (int sock, return ret; } - ifindex = getsockopt_pktinfo_ifindex (AF_INET, &msg); + ifindex = getsockopt_ifindex (AF_INET, &msg); return ret; } |