Add some casts.

Not spotted by: FreeBSD's gcc version 2.95.3 20010315 (release)
Spotted by: OpenBSD's gcc version 2.95.3 20010125 (prerelease)
This commit is contained in:
Brian Somers 2001-08-19 22:23:28 +00:00
parent 5cbe92e7e8
commit 260799afa4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=81924
2 changed files with 3 additions and 3 deletions

View file

@ -831,7 +831,7 @@ ncprange_ntoa(const struct ncprange *range)
if (strcmp(res + len - 2, ".0"))
break;
snprintf(res + len, sizeof res - len, "&0x%08lx",
ntohl(range->ncprange_ip4mask.s_addr));
(unsigned long)ntohl(range->ncprange_ip4mask.s_addr));
} else if (range->ncprange_ip4width < 32)
snprintf(res + len, sizeof res - len, "/%d", range->ncprange_ip4width);

View file

@ -326,7 +326,7 @@ server_TcpOpen(struct bundle *bundle, u_short port)
if (probe.ipv6_available) {
sin6->sin6_family = AF_INET6;
sin6->sin6_port = htons(port);
sin6->sin6_len = sizeof ss;
sin6->sin6_len = (u_int8_t)sizeof ss;
sz = sizeof *sin6;
s = socket(PF_INET6, SOCK_STREAM, 0);
} else
@ -334,7 +334,7 @@ server_TcpOpen(struct bundle *bundle, u_short port)
{
sin->sin_family = AF_INET;
sin->sin_port = htons(port);
sin->sin_len = sizeof ss;
sin->sin_len = (u_int8_t)sizeof ss;
sin->sin_addr.s_addr = INADDR_ANY;
sz = sizeof *sin;
s = socket(PF_INET, SOCK_STREAM, 0);