diff options
-rw-r--r-- | pttbbs/mbbsd/stuff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/stuff.c b/pttbbs/mbbsd/stuff.c index f83c6f37..c37abae1 100644 --- a/pttbbs/mbbsd/stuff.c +++ b/pttbbs/mbbsd/stuff.c @@ -42,10 +42,10 @@ const char* subject_ex(const char *title, int *ptype) { do { - if (str_starts_with(title, str_reply)) { + if (str_case_starts_with(title, str_reply)) { title += strlen(str_reply); ptype = _set_ptype(ptype, SUBJECT_REPLY); - } else if (str_starts_with(title, str_forward)) { + } else if (str_case_starts_with(title, str_forward)) { title += strlen(str_forward); ptype = _set_ptype(ptype, SUBJECT_FORWARD); #ifdef USE_LEGACY_FORWARD |