* resolv/inet_net_ntop.c (inet_net_ntop_ipv4): If BITS is zero
	account for added '0'.
This commit is contained in:
Ulrich Drepper 1999-10-02 07:09:48 +00:00
parent 20cc4c87c0
commit a465f6bdd2
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,8 @@
1999-10-01 Ulrich Drepper <drepper@cygnus.com> 1999-10-01 Ulrich Drepper <drepper@cygnus.com>
* resolv/inet_net_ntop.c (inet_net_ntop_ipv4): If BITS is zero
account for added '0'.
* resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Align * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Align
handling of IPv6 tunnel address handling with bind 8.2.1. Allow handling of IPv6 tunnel address handling with bind 8.2.1. Allow
len argument to be greater than needed address size. len argument to be greater than needed address size.

View File

@ -98,6 +98,7 @@ inet_net_ntop_ipv4(src, bits, dst, size)
if (size < sizeof "0") if (size < sizeof "0")
goto emsgsize; goto emsgsize;
*dst++ = '0'; *dst++ = '0';
--size;
*dst = '\0'; *dst = '\0';
} }