summaryrefslogtreecommitdiff
path: root/libidn
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-03-14 09:18:16 +0000
committerUlrich Drepper <drepper@redhat.com>2004-03-14 09:18:16 +0000
commit8eecbef5ae9e9acc2af21f4ab9dde6ff0331a99d (patch)
tree765e1761b0eac21499fd49a518b18117b9e1ea92 /libidn
parent76461ded580ab4fb31b2022f46b816e51cd174e7 (diff)
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.
Diffstat (limited to 'libidn')
-rw-r--r--libidn/ChangeLog6
-rw-r--r--libidn/idn-stub.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/libidn/ChangeLog b/libidn/ChangeLog
index 1903cab566..17e00a6113 100644
--- a/libidn/ChangeLog
+++ b/libidn/ChangeLog
@@ -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.
diff --git a/libidn/idn-stub.c b/libidn/idn-stub.c
index 7f5d22e5aa..13cd4db5c2 100644
--- a/libidn/idn-stub.c
+++ b/libidn/idn-stub.c
@@ -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;
}