diff options
-rw-r--r-- | pttbbs/mbbsd/ccw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pttbbs/mbbsd/ccw.c b/pttbbs/mbbsd/ccw.c index cad58b98..e81fb62d 100644 --- a/pttbbs/mbbsd/ccw.c +++ b/pttbbs/mbbsd/ccw.c @@ -823,7 +823,7 @@ word_match_index(const char *buf, const char *pattern, size_t szpat) if (!szpat) szpat = strlen(pattern); - while ((p = strcasestr(p, pattern)) != NULL) + while ((p = DBCS_strcasestr(p, pattern)) != NULL) { if (p > buf && isascii(*(p-1)) && isalnum(*(p-1))) { |