diff options
author | 2002-06-27 09:55:49 +0000 | |
---|---|---|
committer | 2002-06-27 09:55:49 +0000 | |
commit | 96fef6aa893018af73aaea07a04c1720bd67d442 (patch) | |
tree | 253b578a8c8384a0029d755ee7bba435391bb6fb /lib/libc | |
parent | ntohs() returns unsigned value (diff) | |
download | wireguard-openbsd-96fef6aa893018af73aaea07a04c1720bd67d442.tar.xz wireguard-openbsd-96fef6aa893018af73aaea07a04c1720bd67d442.zip |
%d/%u mixup (in #ifdef DEBUG)
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/net/getaddrinfo.c | 4 | ||||
-rw-r--r-- | lib/libc/net/res_query.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/net/getaddrinfo.c b/lib/libc/net/getaddrinfo.c index 3f4d9164863..9e28e7a2e74 100644 --- a/lib/libc/net/getaddrinfo.c +++ b/lib/libc/net/getaddrinfo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getaddrinfo.c,v 1.34 2002/06/26 06:01:16 itojun Exp $ */ +/* $OpenBSD: getaddrinfo.c,v 1.35 2002/06/27 09:55:49 itojun Exp $ */ /* $KAME: getaddrinfo.c,v 1.31 2000/08/31 17:36:43 itojun Exp $ */ /* @@ -1584,7 +1584,7 @@ res_queryN(name, target) rcode = hp->rcode; /* record most recent error */ #ifdef DEBUG if (_res.options & RES_DEBUG) - printf(";; rcode = %d, ancount=%d\n", hp->rcode, + printf(";; rcode = %u, ancount=%u\n", hp->rcode, ntohs(hp->ancount)); #endif continue; diff --git a/lib/libc/net/res_query.c b/lib/libc/net/res_query.c index 53837815c38..9c1aef1218f 100644 --- a/lib/libc/net/res_query.c +++ b/lib/libc/net/res_query.c @@ -1,4 +1,4 @@ -/* $OpenBSD: res_query.c,v 1.18 2002/05/24 21:22:37 deraadt Exp $ */ +/* $OpenBSD: res_query.c,v 1.19 2002/06/27 09:55:49 itojun Exp $ */ /* * ++Copyright++ 1988, 1993 @@ -60,7 +60,7 @@ static char sccsid[] = "@(#)res_query.c 8.1 (Berkeley) 6/4/93"; static char rcsid[] = "$From: res_query.c,v 8.9 1996/09/22 00:13:28 vixie Exp $"; #else -static char rcsid[] = "$OpenBSD: res_query.c,v 1.18 2002/05/24 21:22:37 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: res_query.c,v 1.19 2002/06/27 09:55:49 itojun Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -149,7 +149,7 @@ res_query(name, class, type, answer, anslen) if (hp->rcode != NOERROR || ntohs(hp->ancount) == 0) { #ifdef DEBUG if (_res.options & RES_DEBUG) - printf(";; rcode = %d, ancount=%d\n", hp->rcode, + printf(";; rcode = %u, ancount=%u\n", hp->rcode, ntohs(hp->ancount)); #endif switch (hp->rcode) { |