diff options
Diffstat (limited to 'src/lib/libc/net/inet_ntoa.c')
-rw-r--r-- | src/lib/libc/net/inet_ntoa.c | 4 |
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) |
35 | static char rcsid[] = "$OpenBSD: inet_ntoa.c,v 1.2 1996/08/19 08:29:16 tholo Exp $"; | 35 | static 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 *)∈ | 54 | p = (char *)∈ |
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 | } |