Displaying 1 result from an estimated 1 matches for "tcp_flag_names".
2003 Mar 17
0
[Bug 65] New: Problem with error message when tcp-flags doesn't recognize a flag
...================
RCS file: /cvspublic/netfilter/userspace/extensions/libip6t_tcp.c,v
retrieving revision 1.10
diff -u -r1.10 libip6t_tcp.c
--- extensions/libip6t_tcp.c 26 Jul 2002 16:27:57 -0000 1.10
+++ extensions/libip6t_tcp.c 17 Mar 2003 01:00:11 -0000
@@ -122,7 +122,7 @@
}
if (i == sizeof(tcp_flag_names)/sizeof(struct tcp_flag_names))
exit_error(PARAMETER_PROBLEM,
- "Unknown TCP flag `%s'", buffer);
+ "Unknown TCP flag `%s'", ptr);
}
free(buffer);
Index: extensions/libipt_tcp.c
===================================================================
RC...