summaryrefslogtreecommitdiff
path: root/resolv/inet_net_ntop.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-10-02 07:09:48 +0000
committerUlrich Drepper <drepper@redhat.com>1999-10-02 07:09:48 +0000
commita465f6bdd2a7a1f79083fec65c3eeff093451e9e (patch)
tree0427c1e88ede2b55e15c0cc8b252223293371352 /resolv/inet_net_ntop.c
parent20cc4c87c02444b5836052fac76a57895c3b5f87 (diff)
Update.
* resolv/inet_net_ntop.c (inet_net_ntop_ipv4): If BITS is zero account for added '0'.
Diffstat (limited to 'resolv/inet_net_ntop.c')
-rw-r--r--resolv/inet_net_ntop.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/resolv/inet_net_ntop.c b/resolv/inet_net_ntop.c
index 497b0af7c6..d012c537cf 100644
--- a/resolv/inet_net_ntop.c
+++ b/resolv/inet_net_ntop.c
@@ -98,6 +98,7 @@ inet_net_ntop_ipv4(src, bits, dst, size)
if (size < sizeof "0")
goto emsgsize;
*dst++ = '0';
+ --size;
*dst = '\0';
}