diff options
author | mharo <mharo@FreeBSD.org> | 2000-08-28 06:22:13 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2000-08-28 06:22:13 +0800 |
commit | 90331716812406df289ededfc402b240f51b70d5 (patch) | |
tree | 799db55aa5edd128c63ee900079c3315674efe87 /net-mgmt | |
parent | 6df88d755557eb042b94ef1628244c5a7aacef67 (diff) | |
download | freebsd-ports-gnome-90331716812406df289ededfc402b240f51b70d5.tar.gz freebsd-ports-gnome-90331716812406df289ededfc402b240f51b70d5.tar.zst freebsd-ports-gnome-90331716812406df289ededfc402b240f51b70d5.zip |
if (x = y) -> if (x == y)
PR: 20825
Submitted by: Oddbjorn Steffensen <oddbjorn@tricknology.org>
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/trafd/files/patch-ah | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-mgmt/trafd/files/patch-ah b/net-mgmt/trafd/files/patch-ah new file mode 100644 index 000000000000..832f7e5333d7 --- /dev/null +++ b/net-mgmt/trafd/files/patch-ah @@ -0,0 +1,39 @@ +--- trafd/traffic.c.buggy Mon Aug 7 18:45:54 2000 ++++ trafd/traffic.c Mon Aug 7 18:46:42 2000 +@@ -253,7 +253,7 @@ + t.p_port = tp->th_sport, t.who_srv = 1; + else if (tp->th_sport > tp->th_dport) + t.p_port = tp->th_dport, t.who_srv = 2; +- else if (tp->th_sport = tp->th_dport) ++ else if (tp->th_sport == tp->th_dport) + t.p_port = tp->th_sport, t.who_srv = 3; + if (t.p_port > IPPORT_RESERVED) { + if (s_port_big[tp->th_sport & (IPPORT_RESERVED-1)] & IPPROTO_TCP) { +@@ -263,7 +263,7 @@ + t.p_port = tp->th_dport; + t.who_srv = 2; + } +- if (tp->th_sport = tp->th_dport) t.who_srv = 3; ++ if (tp->th_sport == tp->th_dport) t.who_srv = 3; + } + traf_add(insertentry(&t), t.n_bytes, t.n_psize); + +@@ -300,7 +300,7 @@ + t.p_port = up->uh_sport, t.who_srv = 1; + else if (up->uh_sport > up->uh_dport) + t.p_port = up->uh_dport, t.who_srv = 2; +- else if (up->uh_sport = up->uh_dport) ++ else if (up->uh_sport == up->uh_dport) + t.p_port = up->uh_sport, t.who_srv = 3; + if (t.p_port > IPPORT_RESERVED) { + if (s_port_big[up->uh_sport & (IPPORT_RESERVED-1)] & IPPROTO_UDP) { +@@ -310,7 +310,7 @@ + t.p_port = up->uh_dport; + t.who_srv = 2; + } +- if (up->uh_sport = up->uh_dport) t.who_srv = 3; ++ if (up->uh_sport == up->uh_dport) t.who_srv = 3; + } + traf_add(insertentry(&t), t.n_bytes, t.n_psize); + + |