Moves ip[6]tables_insmod() to xtables.c as xtables_insmod()
diff --git a/ip6tables-restore.c b/ip6tables-restore.c
index 25c6ebd..bc32c06 100644
--- a/ip6tables-restore.c
+++ b/ip6tables-restore.c
@@ -16,6 +16,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include "ip6tables.h"
+#include "xtables.h"
 #include "libiptc/libip6tc.h"
 
 #ifdef DEBUG
@@ -62,7 +63,7 @@
 
 	if (!handle) {
 		/* try to insmod the module if iptc_init failed */
-		ip6tables_insmod("ip6_tables", modprobe, 0);
+		xtables_insmod("ip6_tables", modprobe, 0);
 		handle = ip6tc_init(tablename);
 	}