diff options
| author | Roy Marples <roy@marples.name> | 2013-08-20 10:29:43 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2013-08-20 10:29:43 +0000 |
| commit | e82129a42c5525d0d16d591cca537dacf169141d (patch) | |
| tree | 1cfc5005a13ddb47f007cc366b169a3d25f90e42 /net.c | |
| parent | 91f99a7e6f245353de50f9db4373744aa3e0864b (diff) | |
| download | dhcpcd-e82129a42c5525d0d16d591cca537dacf169141d.tar.xz | |
Reduce code size by merging IPv6 ND with RS.
Diffstat (limited to 'net.c')
| -rw-r--r-- | net.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -70,7 +70,7 @@ #include "dhcp.h" #include "dhcp6.h" #include "if-options.h" -#include "ipv6rs.h" +#include "ipv6nd.h" #include "net.h" int socket_afnet = -1; @@ -141,7 +141,7 @@ free_interface(struct interface *ifp) dhcp_free(ifp); ipv6_free(ifp); dhcp6_free(ifp); - ipv6rs_free(ifp); + ipv6nd_free(ifp); free_options(ifp->options); free(ifp); } |
