diff options
-rw-r--r-- | mbbsd/mail.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c index 6fd322e9..fd3245ae 100644 --- a/mbbsd/mail.c +++ b/mbbsd/mail.c @@ -764,6 +764,8 @@ m_forward(int ent, fileheader_t * fhdr, const char *direct) break; } pressanykey(); + quote_user[0]='\0'; + quote_file[0]='\0'; if (strcasecmp(uid, cuser.userid) == 0) return DIRCHANGED; return FULLUPDATE; @@ -1133,6 +1135,8 @@ mail_reply(int ent, fileheader_t * fhdr, const char *direct) strlcpy(uid, strtok(NULL, str_space), sizeof(uid)); // XXX if strtok return NULL else { vmsg("¿ù»~: §ä¤£¨ì§@ªÌ¡C"); + quote_user[0]='\0'; + quote_file[0]='\0'; return FULLUPDATE; } } else @@ -1168,6 +1172,8 @@ mail_reply(int ent, fileheader_t * fhdr, const char *direct) } curredit = ent; pressanykey(); + quote_user[0]='\0'; + quote_file[0]='\0'; if (strcasecmp(uid, cuser.userid) == 0) return DIRCHANGED; return FULLUPDATE; |