diff options
author | jhb <jhb@FreeBSD.org> | 2003-08-07 15:04:27 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2003-08-07 15:04:27 +0000 |
commit | 37641f86f1a209d796b3679ab72c92f2ace89fb7 (patch) | |
tree | d28ecab1cd6104f6189a11004e6d3615215cf931 /sys/netinet | |
parent | 450c201b698a84880b8cd2d816cbc526ddc72f4a (diff) | |
download | FreeBSD-src-37641f86f1a209d796b3679ab72c92f2ace89fb7.zip FreeBSD-src-37641f86f1a209d796b3679ab72c92f2ace89fb7.tar.gz |
Consistently use the BSD u_int and u_short instead of the SYSV uint and
ushort. In most of these files, there was a mixture of both styles and
this change just makes them self-consistent.
Requested by: bde (kern_ktrace.c)
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/in_pcb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c index 4f46ca6..dc52d89 100644 --- a/sys/netinet/in_pcb.c +++ b/sys/netinet/in_pcb.c @@ -365,7 +365,7 @@ in_pcbbind_setup(inp, nam, laddrp, lportp, td) if (*lportp != 0) lport = *lportp; if (lport == 0) { - ushort first, last; + u_short first, last; int count; if (laddr.s_addr != INADDR_ANY) |