From 093514f131646bb73995b36862e2c1780f6968bd Mon Sep 17 00:00:00 2001 From: in2 Date: Tue, 16 Apr 2002 15:27:54 +0000 Subject: fix MDCACHE git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@119 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/more.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'mbbsd/more.c') diff --git a/mbbsd/more.c b/mbbsd/more.c index a932d585..0ffc3793 100644 --- a/mbbsd/more.c +++ b/mbbsd/more.c @@ -1,4 +1,4 @@ -/* $Id: more.c,v 1.7 2002/04/16 14:55:31 in2 Exp $ */ +/* $Id: more.c,v 1.8 2002/04/16 15:27:54 in2 Exp $ */ #include #include #include @@ -238,11 +238,12 @@ int more(char *fpath, int promptend) { /* we only cache boards/ and etc/ */ char *cpath; cpath = cachepath(fpath); - ++GLOBE[0]; - if( (fd = open(cpath, O_RDONLY)) < 0 && - (fd = updatemdcache(cpath, fpath)) < 0 ) + ++GLOBE[8]; + if( (fd = open(cpath, O_RDONLY)) >= 0 ) + ++GLOBE[9]; + else + if( (fd = updatemdcache(cpath, fpath)) < 0 ) return -1; - ++GLOBE[1]; } else fd = open (fpath, O_RDONLY, 0600); -- cgit v1.2.3