diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-11-22 23:09:46 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-11-22 23:09:46 +0800 |
commit | 7a7578e8ea92db3aec98fe8c012f8e406b1616b8 (patch) | |
tree | b3f2384df24b364e9562aced7eefc1f2b3f5376f /mbbsd/board.c | |
parent | 73633286ba5abef91660b5e731117e7293e83529 (diff) | |
download | pttbbs-7a7578e8ea92db3aec98fe8c012f8e406b1616b8.tar pttbbs-7a7578e8ea92db3aec98fe8c012f8e406b1616b8.tar.gz pttbbs-7a7578e8ea92db3aec98fe8c012f8e406b1616b8.tar.bz2 pttbbs-7a7578e8ea92db3aec98fe8c012f8e406b1616b8.tar.lz pttbbs-7a7578e8ea92db3aec98fe8c012f8e406b1616b8.tar.xz pttbbs-7a7578e8ea92db3aec98fe8c012f8e406b1616b8.tar.zst pttbbs-7a7578e8ea92db3aec98fe8c012f8e406b1616b8.zip |
fix bug
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1365 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r-- | mbbsd/board.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index c6ed5d7d..a3dfebbd 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -329,7 +329,9 @@ void load_brdbuf(void) { static char firsttime = 1; - if( !dashf(FAV4) ) { + char buf[128]; + setuserfile(buf, FAV4); + if( !dashf(buf) ) { fav_v3_to_v4(); } fav_load(); |