1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-20 01:02:44 +02:00

* strsep.c (strsep): It's strsep, not strsep2 from testing. (If I had

a dollar for every time I've done that...)
This commit is contained in:
David Shaw 2006-10-03 00:36:18 +00:00
parent 598787a094
commit 4739851ef4
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-10-02 David Shaw <dshaw@jabberwocky.com>
* strsep.c (strsep): It's strsep, not strsep2 from testing. (If I
had a dollar for every time I've done that...)
2006-09-28 David Shaw <dshaw@jabberwocky.com>
* strgutil.c (strsep): Move to strsep.c for AC_REPLACE_FUNCS.

View File

@ -3,7 +3,7 @@
/* code taken from glibc-2.2.1/sysdeps/generic/strsep.c */
char *
strsep2 (char **stringp, const char *delim)
strsep (char **stringp, const char *delim)
{
char *begin, *end;