mirror of git://sourceware.org/git/glibc.git
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>
|
2004-03-12 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* idna.c (idna_to_ascii_4z): Use strdup if available. Unify two ifs.
|
* 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;
|
break;
|
||||||
|
|
||||||
/* On to the next part of the name. */
|
/* On to the next part of the name. */
|
||||||
cp = strchrnul (cp, '.');
|
cp = __strchrnul (cp, '.');
|
||||||
if (*cp == '.')
|
if (*cp == '.')
|
||||||
++cp;
|
++cp;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue