1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

[package] iptables: disable kernel module autoloading

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19917 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow
2010-02-28 19:12:47 +00:00
parent 5834ee619f
commit 1fbb385706
3 changed files with 18 additions and 24 deletions

View File

@@ -0,0 +1,18 @@
--- a/xtables.c
+++ b/xtables.c
@@ -313,6 +313,7 @@ static char *get_modprobe(void)
int xtables_insmod(const char *modname, const char *modprobe, bool quiet)
{
+#if 0
char *buf = NULL;
char *argv[4];
int status;
@@ -356,6 +357,7 @@ int xtables_insmod(const char *modname,
free(buf);
if (WIFEXITED(status) && WEXITSTATUS(status) == 0)
return 0;
+#endif
return -1;
}