From 9a0ab5cb152da0c6f25edf37d50e3c698f78065c Mon Sep 17 00:00:00 2001 From: "/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org" Date: Fri, 21 Apr 2006 12:31:53 +0000 Subject: When entering an invalid command (such as iptables -A INPUT -j MARK --set-mark 1), the error message "Unknown error 4294967295" is displayed; (Closes: #460) --- libiptc/libiptc.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libiptc') diff --git a/libiptc/libiptc.c b/libiptc/libiptc.c index 3538cca..d976702 100644 --- a/libiptc/libiptc.c +++ b/libiptc/libiptc.c @@ -2258,6 +2258,8 @@ TC_STRERROR(int err) "Bad built-in chain name" }, { TC_SET_POLICY, EINVAL, "Bad policy name" }, + { TC_COMMIT, -1, + "Invalid argument (dmesg might have more information)" }, { NULL, 0, "Incompatible with this kernel" }, { NULL, ENOPROTOOPT, "iptables who? (do you need to insmod?)" }, -- cgit v1.2.3