diff options
Diffstat (limited to 'mbbsd/bbs.c')
-rw-r--r-- | mbbsd/bbs.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index 675cccbb..6601dbd0 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -871,7 +871,11 @@ b_posttype(int ent, fileheader_t * fhdr, char *direct) if( posttype_f & (1<<i) ) { if(getdata(2, 20, "設定範本格式?(Y/n)", genbuf, 3, LCECHO) && - genbuf[0]=='n') continue; + genbuf[0]=='n') + { + posttype_f &= ~(1<<i); + continue; + } } else if (!getdata(2, 20, "設定範本格式?(y/N)", genbuf, 3, LCECHO) || genbuf[0]!='y') continue; |