From: Rusty Russell Date: Fri, 12 May 2000 14:04:50 +0000 (+0000) Subject: Fixed protocol-by-number loading. X-Git-Tag: v1.1.0^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27ff3475d2c737a67fc745818a380ffa932e5fba;p=thirdparty%2Fiptables.git Fixed protocol-by-number loading. --- diff --git a/iptables.c b/iptables.c index 4854a7cd..44250e1d 100644 --- a/iptables.c +++ b/iptables.c @@ -1757,7 +1757,7 @@ int do_command(int argc, char *argv[], char **table, iptc_handle_t *handle) + m->size); m->m = fw_calloc(1, size); m->m->u.match_size = size; - strcpy(m->m->u.user.name, optarg); + strcpy(m->m->u.user.name, m->name); m->init(m->m, &fw.nfcache); } break; @@ -1839,7 +1839,7 @@ int do_command(int argc, char *argv[], char **table, iptc_handle_t *handle) m->m = fw_calloc(1, size); m->m->u.match_size = size; - strcpy(m->m->u.user.name, protocol); + strcpy(m->m->u.user.name, m->name); m->init(m->m, &fw.nfcache); optind--;