diff options
author | David Shaw <[email protected]> | 2006-10-03 00:36:18 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-10-03 00:36:18 +0000 |
commit | 4739851ef45e4ee42f425e3a8a0d019cc30d4f1d (patch) | |
tree | 0d0f0a02ddcb18dddc433fb60a15b1f816fe42d7 | |
parent | Fixed bug 518 (diff) | |
download | gnupg-4739851ef45e4ee42f425e3a8a0d019cc30d4f1d.tar.gz gnupg-4739851ef45e4ee42f425e3a8a0d019cc30d4f1d.zip |
* strsep.c (strsep): It's strsep, not strsep2 from testing. (If I had
a dollar for every time I've done that...)
-rw-r--r-- | util/ChangeLog | 5 | ||||
-rw-r--r-- | util/strsep.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/util/ChangeLog b/util/ChangeLog index df84c9112..29ba4766f 100644 --- a/util/ChangeLog +++ b/util/ChangeLog @@ -1,3 +1,8 @@ +2006-10-02 David Shaw <[email protected]> + + * 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 <[email protected]> * strgutil.c (strsep): Move to strsep.c for AC_REPLACE_FUNCS. diff --git a/util/strsep.c b/util/strsep.c index b97945f78..dae7902eb 100644 --- a/util/strsep.c +++ b/util/strsep.c @@ -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; |