summaryrefslogtreecommitdiffstats
path: root/iptables-restore.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2004-08-30 16:00:09 +0000
committerHarald Welte <laforge@gnumonks.org>2004-08-30 16:00:09 +0000
commit3a506ace804781fed313965590b234af7753647e (patch)
tree87567f60afa7e1df8b20f6ed3df7651224aa527f /iptables-restore.c
parentaae69bed019826ddec93f761514652a93d871e49 (diff)
fix slightly changed semantics of iptc_is_builtin
Diffstat (limited to 'iptables-restore.c')
-rw-r--r--iptables-restore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/iptables-restore.c b/iptables-restore.c
index c0ab99e2..284f25c6 100644
--- a/iptables-restore.c
+++ b/iptables-restore.c
@@ -4,7 +4,7 @@
*
* This code is distributed under the terms of GNU GPL v2
*
- * $Id: iptables-restore.c,v 1.34 2004/05/26 16:04:48 gandalf Exp $
+ * $Id: iptables-restore.c,v 1.35 2004/06/25 11:18:57 kadlec Exp $
*/
#include <getopt.h>
@@ -231,7 +231,7 @@ main(int argc, char *argv[])
exit(1);
}
- if (!iptc_builtin(chain, handle)) {
+ if (iptc_builtin(chain, handle) <= 0) {
DEBUGP("Creating new chain '%s'\n", chain);
if (!iptc_create_chain(chain, &handle))
exit_error(PARAMETER_PROBLEM,