diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-16 12:07:47 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-16 12:07:47 +0800 |
commit | 6017ae543885ba2d8204ded8bc1a55bdeb57a5ad (patch) | |
tree | 06696fefe12a29dfc9881027ba8da95d906f4d6a | |
parent | 0bd90a389d5c86f0aa255ce6dbff8c6669529457 (diff) | |
download | pttbbs-6017ae543885ba2d8204ded8bc1a55bdeb57a5ad.tar pttbbs-6017ae543885ba2d8204ded8bc1a55bdeb57a5ad.tar.gz pttbbs-6017ae543885ba2d8204ded8bc1a55bdeb57a5ad.tar.bz2 pttbbs-6017ae543885ba2d8204ded8bc1a55bdeb57a5ad.tar.lz pttbbs-6017ae543885ba2d8204ded8bc1a55bdeb57a5ad.tar.xz pttbbs-6017ae543885ba2d8204ded8bc1a55bdeb57a5ad.tar.zst pttbbs-6017ae543885ba2d8204ded8bc1a55bdeb57a5ad.zip |
push_bottom fix
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1769 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/read.c b/mbbsd/read.c index 332cc0bb..413ad26d 100644 --- a/mbbsd/read.c +++ b/mbbsd/read.c @@ -857,7 +857,7 @@ i_read(int cmdmode, char *direct, void (*dotitle) (), void (*doentry) (), onekey if( (last_line = getbtotal(currbid)) == 0 ){ setbtotal(currbid); setbottomtotal(currbid); - last_line = get_num_records(currdirect, FHSZ); + last_line = getbtotal(currbid); } bottom_line = last_line; last_line += (n_bottom = getbottomtotal(currbid)); |