* resolv/mapv4v6addr.h (map_v4v6_address): Fix last change.

This commit is contained in:
Ulrich Drepper 2006-11-21 15:41:41 +00:00
parent dfc99a5651
commit 854d11248e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-10-21 Jakub Jelinek <jakub@redhat.com>
* resolv/mapv4v6addr.h (map_v4v6_address): Fix last change.
2006-11-20 Ulrich Drepper <drepper@redhat.com>
* resolv/mapv4v6addr.h (map_v4v6_address): Optimize a bit.
@ -24,6 +28,7 @@
* po/nl.po: Update from translation team.
* timezone/zdump.c: Redo fix for BZ #3137.
2006-11-14 Jakub Jelinek <jakub@redhat.com>
* nss/nss_files/files-alias.c (get_next_alias): Set line back

View File

@ -59,7 +59,7 @@ map_v4v6_address (const char *src, char *dst)
int i;
/* Move the IPv4 part to the right position. */
memcpy (src + 12, src, INADDRSZ);
memcpy (dst + 12, src, INADDRSZ);
/* Mark this ipv6 addr as a mapped ipv4. */
for (i = 0; i < 10; i++)