summaryrefslogtreecommitdiffstats
path: root/mbbsd/board.c
diff options
context:
space:
mode:
authorptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-03-16 23:37:22 +0800
committerptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-03-16 23:37:22 +0800
commit1be39ce6e70dd5ecbdbef246606c9933dfb7b562 (patch)
tree3c7f459e24fa5d13ba85badb0a64da241b0baf68 /mbbsd/board.c
parentf79d7ef296f497b75d91a7770c7c1abce36961a4 (diff)
downloadpttbbs-1be39ce6e70dd5ecbdbef246606c9933dfb7b562.tar
pttbbs-1be39ce6e70dd5ecbdbef246606c9933dfb7b562.tar.gz
pttbbs-1be39ce6e70dd5ecbdbef246606c9933dfb7b562.tar.bz2
pttbbs-1be39ce6e70dd5ecbdbef246606c9933dfb7b562.tar.lz
pttbbs-1be39ce6e70dd5ecbdbef246606c9933dfb7b562.tar.xz
pttbbs-1be39ce6e70dd5ecbdbef246606c9933dfb7b562.tar.zst
pttbbs-1be39ce6e70dd5ecbdbef246606c9933dfb7b562.zip
*** empty log message ***
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@32 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r--mbbsd/board.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c
index c8ba647f..f28721da 100644
--- a/mbbsd/board.c
+++ b/mbbsd/board.c
@@ -1,4 +1,4 @@
-/* $Id: board.c,v 1.2 2002/03/11 11:12:05 in2 Exp $ */
+/* $Id: board.c,v 1.3 2002/03/16 15:37:22 ptt Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -238,8 +238,8 @@ void init_brdbuf() {
register int n, size;
char fname[60];
- /* MAXBOARDS ==> 至多看得見 4 個新板 */
- n = numboards + 4;
+ /* MAXBOARDS ==> 至多看得見 32 個新板 */
+ n = numboards + 32;
size = n * sizeof(int);
zapbuf = (int *) malloc(size);
favbuf = (int *) malloc(size + sizeof(int));