[netfilter-cvslog] r6586 - trunk/iptables/libiptc

laforge at netfilter.org laforge at netfilter.org
Fri Apr 21 14:31:57 CEST 2006


Author: laforge at netfilter.org
Date: 2006-04-21 14:31:53 +0200 (Fri, 21 Apr 2006)
New Revision: 6586

Modified:
   trunk/iptables/libiptc/libiptc.c
Log:
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)


Modified: trunk/iptables/libiptc/libiptc.c
===================================================================
--- trunk/iptables/libiptc/libiptc.c	2006-04-21 12:04:51 UTC (rev 6585)
+++ trunk/iptables/libiptc/libiptc.c	2006-04-21 12:31:53 UTC (rev 6586)
@@ -2258,6 +2258,8 @@
 	      "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?)" },




More information about the netfilter-cvslog mailing list