summaryrefslogtreecommitdiffstats
path: root/iptables-restore.c
diff options
context:
space:
mode:
authorYasuyuki KOZAKAI <yasuyuki@netfilter.org>2007-03-13 08:17:59 +0000
committerYasuyuki KOZAKAI <yasuyuki@netfilter.org>2007-03-13 08:17:59 +0000
commit0e9480b864a16400fc3572719b05f01f300026ab (patch)
treef42f735b00dc0c6a783de2b7c0b2fd056ce3bae8 /iptables-restore.c
parent191e3ffccbea68fa927720a8ef8f8b0a437c1f41 (diff)
Supress error message from modprobe on checking revision.
Diffstat (limited to 'iptables-restore.c')
-rw-r--r--iptables-restore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iptables-restore.c b/iptables-restore.c
index 9abdef25..89acd73d 100644
--- a/iptables-restore.c
+++ b/iptables-restore.c
@@ -59,7 +59,7 @@ iptc_handle_t create_handle(const char *tablename, const char* modprobe )
if (!handle) {
/* try to insmod the module if iptc_init failed */
- iptables_insmod("ip_tables", modprobe);
+ iptables_insmod("ip_tables", modprobe, 0);
handle = iptc_init(tablename);
}