diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-05 21:13:18 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-05 21:13:18 +0000 |
commit | bb93359ccedae9a32facea758712506a0fe8f3d4 (patch) | |
tree | e8c47183ac65cd8ac28764b16b44538c24193d92 /lib/libc/net/res_debug.c | |
parent | a75078b4a8609418bb7e9376e492d6ef6c57f181 (diff) |
Use in_addr_t not u_long and use in_port_t in some cases instead
of u_short or u_int16_t.
Diffstat (limited to 'lib/libc/net/res_debug.c')
-rw-r--r-- | lib/libc/net/res_debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/net/res_debug.c b/lib/libc/net/res_debug.c index 7fd6d4a21c6..0b623a153c8 100644 --- a/lib/libc/net/res_debug.c +++ b/lib/libc/net/res_debug.c @@ -1,4 +1,4 @@ -/* $OpenBSD: res_debug.c,v 1.5 1997/03/13 19:07:37 downsj Exp $ */ +/* $OpenBSD: res_debug.c,v 1.6 1997/04/05 21:13:16 millert Exp $ */ /* * ++Copyright++ 1985, 1990, 1993 @@ -82,7 +82,7 @@ static char sccsid[] = "@(#)res_debug.c 8.1 (Berkeley) 6/4/93"; static char rcsid[] = "$From: res_debug.c,v 8.19 1996/11/26 10:11:23 vixie Exp $"; #else -static char rcsid[] = "$OpenBSD: res_debug.c,v 1.5 1997/03/13 19:07:37 downsj Exp $"; +static char rcsid[] = "$OpenBSD: res_debug.c,v 1.6 1997/04/05 21:13:16 millert Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -518,7 +518,7 @@ __p_rr(cp, msg, file) } else if (dlen == 7) { char *address; u_char protocol; - u_short port; + in_port_t port; address = inet_ntoa(inaddr); cp += INADDRSZ; |