From 8f1f2b652ae1b117b0afae628b1ba14e0b6a047f Mon Sep 17 00:00:00 2001 From: rusty Date: Fri, 7 Jul 2000 02:17:46 +0000 Subject: Don't reverse matches on command line (matters for -m limit). --- iptables.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/iptables.c b/iptables.c index 6d62cab..d4deff8 100644 --- a/iptables.c +++ b/iptables.c @@ -916,6 +916,8 @@ merge_options(struct option *oldopts, struct option *newopts, void register_match(struct iptables_match *me) { + struct iptables_match **i; + if (strcmp(me->version, program_version) != 0) { fprintf(stderr, "%s: match `%s' v%s (I'm v%s).\n", program_name, me->name, me->version, program_version); @@ -934,9 +936,11 @@ register_match(struct iptables_match *me) exit(1); } - /* Prepend to list. */ - me->next = iptables_matches; - iptables_matches = me; + /* Append to list. */ + for (i = &iptables_matches; *i; i = &(*i)->next); + me->next = NULL; + *i = me; + me->m = NULL; me->mflags = 0; -- cgit v1.2.3