From cd2f6d2919204b3e5e54b6adee9e19559bb53b40 Mon Sep 17 00:00:00 2001 From: Pablo Neira AyusoMaurice van der Pot Date: Mon, 16 Apr 2007 17:15:22 +0000 Subject: Fix iptables --modprobe parameter (Maurice van der Pot ) Supply modprobe parameter to iptables_insmod function. Bugzilla #556 --- iptables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iptables.c b/iptables.c index dee695f5..60ddc2d4 100644 --- a/iptables.c +++ b/iptables.c @@ -1861,7 +1861,7 @@ int load_iptables_ko(const char *modprobe, int quiet) static int ret = -1; if (!loaded) { - ret = iptables_insmod("ip_tables", NULL, quiet); + ret = iptables_insmod("ip_tables", modprobe, quiet); loaded = (ret == 0); } -- cgit v1.2.3