diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-07-03 17:08:14 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-07-03 17:08:14 +0800 |
commit | dbf19de33a1d05dd2322a57dc84ccb672f6323ad (patch) | |
tree | fcd4619fa4931c28b70d440538adb1cfdc2e4067 | |
parent | 32633f53d27446544fcf296c16c5b1c2bfe6625a (diff) | |
download | pttbbs-dbf19de33a1d05dd2322a57dc84ccb672f6323ad.tar pttbbs-dbf19de33a1d05dd2322a57dc84ccb672f6323ad.tar.gz pttbbs-dbf19de33a1d05dd2322a57dc84ccb672f6323ad.tar.bz2 pttbbs-dbf19de33a1d05dd2322a57dc84ccb672f6323ad.tar.lz pttbbs-dbf19de33a1d05dd2322a57dc84ccb672f6323ad.tar.xz pttbbs-dbf19de33a1d05dd2322a57dc84ccb672f6323ad.tar.zst pttbbs-dbf19de33a1d05dd2322a57dc84ccb672f6323ad.zip |
if( !(strstr(fhdr->title, "���u") && strstr(fhdr->title, "�O��")) ){
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@408 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/mail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/mail.c b/pttbbs/mbbsd/mail.c index a4d47df7..35fced7e 100644 --- a/pttbbs/mbbsd/mail.c +++ b/pttbbs/mbbsd/mail.c @@ -1,4 +1,4 @@ -/* $Id: mail.c,v 1.15 2002/07/02 02:12:56 in2 Exp $ */ +/* $Id: mail.c,v 1.16 2002/07/03 09:08:14 in2 Exp $ */ #include "bbs.h" char currmaildir[32]; static char msg_cc[] = "\033[32m[¸s²Õ¦W³æ]\033[m\n"; @@ -1220,7 +1220,7 @@ static int mail_waterball(int ent, fileheader_t *fhdr, char *direct) char fname[500], genbuf[200]; FILE *fp; - if( !strstr(fhdr->title, "¼ö½u°O¿ý") ){ + if( !(strstr(fhdr->title, "¼ö½u") && strstr(fhdr->title, "°O¿ý")) ){ vmsg("¥²¶·¬O ¼ö½u°O¿ý ¤~¯à¨Ï¥Î¤ô²y¾ã²zªºò!"); return 1; } |