diff options
author | brian <brian@FreeBSD.org> | 1998-06-10 00:26:19 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1998-06-10 00:26:19 +0000 |
commit | 4ff4152e094a629c99041a3108e2b31cf7f963ae (patch) | |
tree | 63345ac28b70c4c8816da9c9ec6c738aeac54692 /lib | |
parent | 62a6d48ec9c890f13522b6fa5c39e24eb3e8d43d (diff) | |
download | FreeBSD-src-4ff4152e094a629c99041a3108e2b31cf7f963ae.zip FreeBSD-src-4ff4152e094a629c99041a3108e2b31cf7f963ae.tar.gz |
Quieten gcc 2.8.1
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libalias/alias.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalias/alias.c b/lib/libalias/alias.c index 4c15c5e..f0c0804 100644 --- a/lib/libalias/alias.c +++ b/lib/libalias/alias.c @@ -321,12 +321,12 @@ IcmpAliasIn2(struct ip *pip) link = FindUdpTcpIn(ip->ip_dst, ip->ip_src, tc->th_dport, tc->th_sport, IPPROTO_TCP); - else if (ip->ip_p == IPPROTO_ICMP) + else if (ip->ip_p == IPPROTO_ICMP) { if (ic2->icmp_type == ICMP_ECHO || ic2->icmp_type == ICMP_TSTAMP) link = FindIcmpIn(ip->ip_dst, ip->ip_src, ic2->icmp_id); else link = NULL; - else + } else link = NULL; if (link != NULL) |