summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mbbsd/read.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/read.c b/mbbsd/read.c
index 1c7aeb16..e6620cb4 100644
--- a/mbbsd/read.c
+++ b/mbbsd/read.c
@@ -1,4 +1,4 @@
-/* $Id: read.c,v 1.22 2003/06/22 14:39:55 in2 Exp $ */
+/* $Id: read.c,v 1.23 2003/06/22 15:06:00 in2 Exp $ */
#include "bbs.h"
static fileheader_t *headers = NULL;
@@ -845,8 +845,8 @@ i_read(int cmdmode, char *direct, void (*dotitle) (), void (*doentry) (), onekey
locmem->top_ln = recbase;
}
if( bidcache > 0 &&
- !(currmode & (MODE_SELECT | MODE_DIGEST)
- && (last_line - recbase) < DIRCACHESIZE) )
+ !(currmode & (MODE_SELECT | MODE_DIGEST)) &&
+ (last_line - recbase) < DIRCACHESIZE )
entries = get_fileheader_cache(currbid, currdirect,
headers, recbase, p_lines);
else