From 6e5e998f7c9a8fa96458f36021bc4552624d6b04 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 2 Sep 2015 18:55:47 +0200 Subject: m MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/string/strtok.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/string/strtok.c') diff --git a/src/string/strtok.c b/src/string/strtok.c index 1520431..0ccd516 100644 --- a/src/string/strtok.c +++ b/src/string/strtok.c @@ -101,7 +101,7 @@ char* strsep(char** restrict string, const char* restrict delimiters) if (r == NULL) return NULL; - next = stpbrk(r, delimiters); + next = strpbrk(r, delimiters); if (next != NULL) *next++ = 0; *string = next; -- cgit v1.2.3-70-g09d2