diff options
author | phk <phk@FreeBSD.org> | 1994-10-08 22:39:58 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1994-10-08 22:39:58 +0000 |
commit | 632c3f49e9475d503a10c106a9f31e42df71532a (patch) | |
tree | 45f057ece43e4d6ba422f681d1003df1d38f196a | |
parent | 3282d8a721b3dbbcba22d35007bc824d88eb5ad1 (diff) | |
download | FreeBSD-src-632c3f49e9475d503a10c106a9f31e42df71532a.zip FreeBSD-src-632c3f49e9475d503a10c106a9f31e42df71532a.tar.gz |
Cosmetics: silences gcc -Wall.
-rw-r--r-- | sys/netinet/ip_icmp.c | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_subr.c | 6 | ||||
-rw-r--r-- | sys/netinet/tcp_timewait.c | 6 |
3 files changed, 8 insertions, 7 deletions
diff --git a/sys/netinet/ip_icmp.c b/sys/netinet/ip_icmp.c index d26c6a1..376c5cb 100644 --- a/sys/netinet/ip_icmp.c +++ b/sys/netinet/ip_icmp.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_icmp.c 8.2 (Berkeley) 1/4/94 - * $Id: ip_icmp.c,v 1.2 1994/08/02 07:48:32 davidg Exp $ + * $Id: ip_icmp.c,v 1.3 1994/10/02 17:48:38 phk Exp $ */ #include <sys/param.h> @@ -42,6 +42,7 @@ #include <sys/socket.h> #include <sys/time.h> #include <sys/kernel.h> +#include <sys/socket.h> #include <net/if.h> #include <net/route.h> diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index 0e01df8..10e83ab 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_subr.c 8.1 (Berkeley) 6/10/93 - * $Id: tcp_subr.c,v 1.3 1994/08/02 07:49:08 davidg Exp $ + * $Id: tcp_subr.c,v 1.4 1994/10/02 17:48:44 phk Exp $ */ #include <sys/param.h> @@ -326,8 +326,8 @@ tcp_close(tp) * before we start updating, then update on both good * and bad news. */ - if ((rt->rt_rmx.rmx_locks & RTV_SSTHRESH) == 0 && - ((i = tp->snd_ssthresh)) && rt->rt_rmx.rmx_ssthresh || + if (((rt->rt_rmx.rmx_locks & RTV_SSTHRESH) == 0 && + ((i = tp->snd_ssthresh) != 0) && rt->rt_rmx.rmx_ssthresh) || i < (rt->rt_rmx.rmx_sendpipe / 2)) { /* * convert the limit from user data bytes to diff --git a/sys/netinet/tcp_timewait.c b/sys/netinet/tcp_timewait.c index 0e01df8..10e83ab 100644 --- a/sys/netinet/tcp_timewait.c +++ b/sys/netinet/tcp_timewait.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_subr.c 8.1 (Berkeley) 6/10/93 - * $Id: tcp_subr.c,v 1.3 1994/08/02 07:49:08 davidg Exp $ + * $Id: tcp_subr.c,v 1.4 1994/10/02 17:48:44 phk Exp $ */ #include <sys/param.h> @@ -326,8 +326,8 @@ tcp_close(tp) * before we start updating, then update on both good * and bad news. */ - if ((rt->rt_rmx.rmx_locks & RTV_SSTHRESH) == 0 && - ((i = tp->snd_ssthresh)) && rt->rt_rmx.rmx_ssthresh || + if (((rt->rt_rmx.rmx_locks & RTV_SSTHRESH) == 0 && + ((i = tp->snd_ssthresh) != 0) && rt->rt_rmx.rmx_ssthresh) || i < (rt->rt_rmx.rmx_sendpipe / 2)) { /* * convert the limit from user data bytes to |