From 4739851ef45e4ee42f425e3a8a0d019cc30d4f1d Mon Sep 17 00:00:00 2001 From: David Shaw Date: Tue, 3 Oct 2006 00:36:18 +0000 Subject: * strsep.c (strsep): It's strsep, not strsep2 from testing. (If I had a dollar for every time I've done that...) --- util/ChangeLog | 5 +++++ util/strsep.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * 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 * 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; -- cgit v1.2.3