mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
Update.
2004-03-14 Ulrich Drepper <drepper@redhat.com> * idn-stub.c (__idna_to_unicode_lzlz): Use __strchrnul, not strchrnul. * idna.c (idna_to_ascii_4z): Revert last patch.
This commit is contained in:
parent
76461ded58
commit
8eecbef5ae
@ -1,3 +1,9 @@
|
||||
2004-03-14 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* idn-stub.c (__idna_to_unicode_lzlz): Use __strchrnul, not strchrnul.
|
||||
|
||||
* idna.c (idna_to_ascii_4z): Revert last patch.
|
||||
|
||||
2004-03-12 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* idna.c (idna_to_ascii_4z): Use strdup if available. Unify two ifs.
|
||||
|
@ -83,7 +83,7 @@ __idna_to_unicode_lzlz (const char *input, char **output, int flags)
|
||||
break;
|
||||
|
||||
/* On to the next part of the name. */
|
||||
cp = strchrnul (cp, '.');
|
||||
cp = __strchrnul (cp, '.');
|
||||
if (*cp == '.')
|
||||
++cp;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user