summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorThomas Woerner <twoerner@redhat.com>2003-10-02 19:59:27 +0000
committerHarald Welte <laforge@gnumonks.org>2003-10-02 19:59:27 +0000
commit7fb4d1f3143eb1235aacc424b29e296948a78034 (patch)
tree927a6708dffe3d2f4f807ba97984bb149e1695a8 /extensions
parentaeba2406d2657fff3c00578f96b7dd8358b38d2e (diff)
fix saving of udp port range in ip6tables (Thomas Woerner)
Diffstat (limited to 'extensions')
-rw-r--r--extensions/libip6t_udp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/libip6t_udp.c b/extensions/libip6t_udp.c
index a2e2fe64..139386cd 100644
--- a/extensions/libip6t_udp.c
+++ b/extensions/libip6t_udp.c
@@ -205,7 +205,7 @@ static void save(const struct ip6t_ip6 *ip, const struct ip6t_entry_match *match
const struct ip6t_udp *udpinfo = (struct ip6t_udp *)match->data;
if (udpinfo->spts[0] != 0
- && udpinfo->spts[1] != 0xFFFF) {
+ || udpinfo->spts[1] != 0xFFFF) {
if (udpinfo->invflags & IP6T_UDP_INV_SRCPT)
printf("! ");
if (udpinfo->spts[0]
@@ -219,7 +219,7 @@ static void save(const struct ip6t_ip6 *ip, const struct ip6t_entry_match *match
}
if (udpinfo->dpts[0] != 0
- && udpinfo->dpts[1] != 0xFFFF) {
+ || udpinfo->dpts[1] != 0xFFFF) {
if (udpinfo->invflags & IP6T_UDP_INV_DSTPT)
printf("! ");
if (udpinfo->dpts[0]