diff options
author | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-11-16 12:59:00 +0800 |
---|---|---|
committer | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-11-16 12:59:00 +0800 |
commit | 2d670e0e811f17e052bcd4a66c3e660355df38ba (patch) | |
tree | ede20e9a904065bc8d72521b7417f32bd1886d47 | |
parent | 606adda410e73e1e3bc69b97f7544298f886ccd2 (diff) | |
download | pttbbs-2d670e0e811f17e052bcd4a66c3e660355df38ba.tar pttbbs-2d670e0e811f17e052bcd4a66c3e660355df38ba.tar.gz pttbbs-2d670e0e811f17e052bcd4a66c3e660355df38ba.tar.bz2 pttbbs-2d670e0e811f17e052bcd4a66c3e660355df38ba.tar.lz pttbbs-2d670e0e811f17e052bcd4a66c3e660355df38ba.tar.xz pttbbs-2d670e0e811f17e052bcd4a66c3e660355df38ba.tar.zst pttbbs-2d670e0e811f17e052bcd4a66c3e660355df38ba.zip |
fix last commit's fault
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2326 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/read.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/read.c b/mbbsd/read.c index 6f889855..839c8021 100644 --- a/mbbsd/read.c +++ b/mbbsd/read.c @@ -275,9 +275,9 @@ thread(keeploc_t * locmem, int stypen) if (stypen == RS_AUTHOR) key = headers[pos - locmem->top_ln].owner; else if (stypen == RS_CURRENT) - subject(currtitle); + key = subject(currtitle); else - subject(headers[pos - locmem->top_ln].title ); + key = subject(headers[pos - locmem->top_ln].title ); for( new_ln = pos + step ; new_ln > 0 && new_ln <= last_line && --jump > 0; |