summaryrefslogtreecommitdiffstats
path: root/mbbsd/cache.c
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-04-04 01:41:12 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-04-04 01:41:12 +0800
commitbeac874f4523ed2b32dd48c7d19ba42d43f24fe4 (patch)
tree50e8807647963d2a7543b2bab3e9c7be526a38f7 /mbbsd/cache.c
parentd706913fa35ffa57bdbeed7804f499763d179fc0 (diff)
downloadpttbbs-beac874f4523ed2b32dd48c7d19ba42d43f24fe4.tar
pttbbs-beac874f4523ed2b32dd48c7d19ba42d43f24fe4.tar.gz
pttbbs-beac874f4523ed2b32dd48c7d19ba42d43f24fe4.tar.bz2
pttbbs-beac874f4523ed2b32dd48c7d19ba42d43f24fe4.tar.lz
pttbbs-beac874f4523ed2b32dd48c7d19ba42d43f24fe4.tar.xz
pttbbs-beac874f4523ed2b32dd48c7d19ba42d43f24fe4.tar.zst
pttbbs-beac874f4523ed2b32dd48c7d19ba42d43f24fe4.zip
hbfl move to brdshm
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@74 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/cache.c')
-rw-r--r--mbbsd/cache.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mbbsd/cache.c b/mbbsd/cache.c
index 64b6bffe..bd380f19 100644
--- a/mbbsd/cache.c
+++ b/mbbsd/cache.c
@@ -1,4 +1,4 @@
-/* $Id: cache.c,v 1.4 2002/03/29 16:22:52 ptt Exp $ */
+/* $Id: cache.c,v 1.5 2002/04/03 17:41:12 in2 Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -1004,17 +1004,17 @@ void hbflreload(int bid)
fclose(fp);
}
hbfl[0] = time(NULL);
- memcpy(uhash->hbfl[bid], hbfl, sizeof(hbfl));
+ memcpy(brdshm->hbfl[bid], hbfl, sizeof(hbfl));
}
int hbflcheck(int bid, int uid)
{
int i;
- if( uhash->hbfl[bid][0] < login_start_time - HBFLexpire )
+ if( brdshm->hbfl[bid][0] < login_start_time - HBFLexpire )
hbflreload(bid);
- for( i = 1 ; uhash->hbfl[bid][i] != 0 && i <= MAX_FRIEND ; ++i ){
- if( uhash->hbfl[bid][i] == uid )
+ for( i = 1 ; brdshm->hbfl[bid][i] != 0 && i <= MAX_FRIEND ; ++i ){
+ if( brdshm->hbfl[bid][i] == uid )
return 0;
}
return 1;