From 27ff3475d2c737a67fc745818a380ffa932e5fba Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 12 May 2000 14:04:50 +0000 Subject: Fixed protocol-by-number loading. --- iptables.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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--; -- cgit v1.2.3