aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2006-10-03 00:36:18 +0000
committerDavid Shaw <[email protected]>2006-10-03 00:36:18 +0000
commit4739851ef45e4ee42f425e3a8a0d019cc30d4f1d (patch)
tree0d0f0a02ddcb18dddc433fb60a15b1f816fe42d7
parentFixed bug 518 (diff)
downloadgnupg-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/ChangeLog5
-rw-r--r--util/strsep.c2
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;