diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-06-02 06:08:53 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-06-02 06:08:53 +0800 |
commit | 1fcc5da29d40392d24c3dc5f9afd65290ab6ddbe (patch) | |
tree | 568018f762dd648a36c648b1bb0d9d1c43490d04 /mbbsd | |
parent | 862876670bcd40fd6eb76a2e4769782d038e375f (diff) | |
download | pttbbs-1fcc5da29d40392d24c3dc5f9afd65290ab6ddbe.tar pttbbs-1fcc5da29d40392d24c3dc5f9afd65290ab6ddbe.tar.gz pttbbs-1fcc5da29d40392d24c3dc5f9afd65290ab6ddbe.tar.bz2 pttbbs-1fcc5da29d40392d24c3dc5f9afd65290ab6ddbe.tar.lz pttbbs-1fcc5da29d40392d24c3dc5f9afd65290ab6ddbe.tar.xz pttbbs-1fcc5da29d40392d24c3dc5f9afd65290ab6ddbe.tar.zst pttbbs-1fcc5da29d40392d24c3dc5f9afd65290ab6ddbe.zip |
't' unset
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@269 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/board.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index 88376c7e..54237fa5 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -1,4 +1,4 @@ -/* $Id: board.c,v 1.26 2002/05/30 17:59:41 ptt Exp $ */ +/* $Id: board.c,v 1.27 2002/06/01 22:08:53 ptt Exp $ */ #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -262,6 +262,9 @@ void init_brdbuf() { read(n, favbuf, size); close(n); } + + for(n = 0; n < size; n++) + favbuf[n] &= ~BRD_TAG; brc_expire_time = login_start_time - 365 * 86400; } |