Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 14 Mar 2004 09:18:16 +0000 (09:18 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 14 Mar 2004 09:18:16 +0000 (09:18 +0000)
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.

libidn/ChangeLog
libidn/idn-stub.c

index 1903cab..17e00a6 100644 (file)
@@ -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.
index 7f5d22e..13cd4db 100644 (file)
@@ -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;
     }