summaryrefslogtreecommitdiff
path: root/src/lib/libc/net/inet_ntoa.c
diff options
context:
space:
mode:
authoritojun <>2002-06-27 10:14:02 +0000
committeritojun <>2002-06-27 10:14:02 +0000
commite08f871ca434f7bd4986a8b654059f32fda1e02a (patch)
tree2b8891e440030c912c28a1107ecacf13f0ae253a /src/lib/libc/net/inet_ntoa.c
parent109d4b11ca7904c66006363c1e4e37b9fa1f9562 (diff)
downloadopenbsd-e08f871ca434f7bd4986a8b654059f32fda1e02a.tar.gz
openbsd-e08f871ca434f7bd4986a8b654059f32fda1e02a.tar.bz2
openbsd-e08f871ca434f7bd4986a8b654059f32fda1e02a.zip
%d -> %u. mostly in #ifdef DEBUG.
Diffstat (limited to 'src/lib/libc/net/inet_ntoa.c')
-rw-r--r--src/lib/libc/net/inet_ntoa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/net/inet_ntoa.c b/src/lib/libc/net/inet_ntoa.c
index 148732ba5a..377184f366 100644
--- a/src/lib/libc/net/inet_ntoa.c
+++ b/src/lib/libc/net/inet_ntoa.c
@@ -32,7 +32,7 @@
32 */ 32 */
33 33
34#if defined(LIBC_SCCS) && !defined(lint) 34#if defined(LIBC_SCCS) && !defined(lint)
35static char rcsid[] = "$OpenBSD: inet_ntoa.c,v 1.2 1996/08/19 08:29:16 tholo Exp $"; 35static char rcsid[] = "$OpenBSD: inet_ntoa.c,v 1.3 2002/06/27 10:14:01 itojun Exp $";
36#endif /* LIBC_SCCS and not lint */ 36#endif /* LIBC_SCCS and not lint */
37 37
38/* 38/*
@@ -54,6 +54,6 @@ inet_ntoa(in)
54 p = (char *)&in; 54 p = (char *)&in;
55#define UC(b) (((int)b)&0xff) 55#define UC(b) (((int)b)&0xff)
56 (void)snprintf(b, sizeof(b), 56 (void)snprintf(b, sizeof(b),
57 "%d.%d.%d.%d", UC(p[0]), UC(p[1]), UC(p[2]), UC(p[3])); 57 "%u.%u.%u.%u", UC(p[0]), UC(p[1]), UC(p[2]), UC(p[3]));
58 return (b); 58 return (b);
59} 59}