summaryrefslogtreecommitdiffstats
path: root/net.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2013-08-20 10:29:43 +0000
committerRoy Marples <roy@marples.name>2013-08-20 10:29:43 +0000
commite82129a42c5525d0d16d591cca537dacf169141d (patch)
tree1cfc5005a13ddb47f007cc366b169a3d25f90e42 /net.c
parent91f99a7e6f245353de50f9db4373744aa3e0864b (diff)
downloaddhcpcd-e82129a42c5525d0d16d591cca537dacf169141d.tar.xz
Reduce code size by merging IPv6 ND with RS.
Diffstat (limited to 'net.c')
-rw-r--r--net.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net.c b/net.c
index 92a9b18c..898b2221 100644
--- a/net.c
+++ b/net.c
@@ -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);
}