From: duane Date: Sat, 27 Jun 2009 16:44:35 +0000 (+0000) Subject: Switch to strotk() grr.... X-Git-Tag: v0.2.0~109 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9c05c92c1437dc243b52d9281ab77e8ac223816f;p=openocd Switch to strotk() grr.... git-svn-id: svn://svn.berlios.de/openocd/trunk@2406 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/helper/membuf.c b/src/helper/membuf.c index 160d0bd7..766364a8 100644 --- a/src/helper/membuf.c +++ b/src/helper/membuf.c @@ -58,11 +58,13 @@ membuf_strtok(struct membuf *pBuf, const char *sep, void **pLast) if (pBuf) { pBuf->_strtoklast = NULL; *pLast = pBuf; - return strtok_r(((char *)(pBuf->buf)), sep, &(pBuf->_strtoklast)); + // this should be "strtok_r()" but windows lacks */ + return strtok(((char *)(pBuf->buf)), sep); } else { // recover our pBuf pBuf = *((struct membuf **)(pLast)); - return strtok_r(NULL, sep, &(pBuf->_strtoklast)); + // this should be "strtok_r()" but windows lacks */ + return strtok( NULL, sep); } }