diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-06-05 11:10:43 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-06-05 11:10:43 +0800 |
commit | 34950cf9e1557ed9959a6b3a88c5b18bf68db0a3 (patch) | |
tree | 29ebe1c40469972bd11b0533a75bef458d91e082 | |
parent | 7e5333c7a3427aa939b1b25785e677bb1b87a0b3 (diff) | |
download | pttbbs-34950cf9e1557ed9959a6b3a88c5b18bf68db0a3.tar pttbbs-34950cf9e1557ed9959a6b3a88c5b18bf68db0a3.tar.gz pttbbs-34950cf9e1557ed9959a6b3a88c5b18bf68db0a3.tar.bz2 pttbbs-34950cf9e1557ed9959a6b3a88c5b18bf68db0a3.tar.lz pttbbs-34950cf9e1557ed9959a6b3a88c5b18bf68db0a3.tar.xz pttbbs-34950cf9e1557ed9959a6b3a88c5b18bf68db0a3.tar.zst pttbbs-34950cf9e1557ed9959a6b3a88c5b18bf68db0a3.zip |
*** empty log message ***
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@294 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index b9caf3cf..15cdee5b 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -1,4 +1,4 @@ -/* $Id: board.c,v 1.33 2002/06/05 03:08:56 ptt Exp $ */ +/* $Id: board.c,v 1.34 2002/06/05 03:10:43 ptt Exp $ */ #include "bbs.h" #define BRC_STRLEN 15 /* Length of board name */ #define BRC_MAXSIZE 24576 @@ -656,7 +656,7 @@ static void dozap(int num){ void delutmpbid(int bid, userinfo_t *utmp) { userinfo_t *u; - while (brdshm->busystate!=1 && now-brdshm->busystate_b[bid-1]>=10) + while (brdshm->busystate || now-brdshm->busystate_b[bid-1]<5) sleep(1); // Ptt:有問題都是這邊沒有執行到就爛掉了 |