Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Ulrich Drepper committed Mar 14, 2004
1 parent 76461de commit 8eecbef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions 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.
Expand Down
2 changes: 1 addition & 1 deletion libidn/idn-stub.c
Expand Up @@ -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;
}
Expand Down

0 comments on commit 8eecbef

Please sign in to comment.