summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-01-17 15:10:54 +0800
committerkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-01-17 15:10:54 +0800
commitd66d1361509acbb4452776eb5621051ebd9c2c08 (patch)
tree87c3951f812cdc1de7344e615ea9a051bc0e2893
parent68630befaef74138775994f1269b906e8ad56992 (diff)
downloadpttbbs-d66d1361509acbb4452776eb5621051ebd9c2c08.tar
pttbbs-d66d1361509acbb4452776eb5621051ebd9c2c08.tar.gz
pttbbs-d66d1361509acbb4452776eb5621051ebd9c2c08.tar.bz2
pttbbs-d66d1361509acbb4452776eb5621051ebd9c2c08.tar.lz
pttbbs-d66d1361509acbb4452776eb5621051ebd9c2c08.tar.xz
pttbbs-d66d1361509acbb4452776eb5621051ebd9c2c08.tar.zst
pttbbs-d66d1361509acbb4452776eb5621051ebd9c2c08.zip
don't sort many times within loop -_-
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@617 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/board.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/pttbbs/mbbsd/board.c b/pttbbs/mbbsd/board.c
index 4d5a42dc..58444c27 100644
--- a/pttbbs/mbbsd/board.c
+++ b/pttbbs/mbbsd/board.c
@@ -1,4 +1,4 @@
-/* $Id: board.c,v 1.69 2003/01/17 07:08:04 kcwu Exp $ */
+/* $Id: board.c,v 1.70 2003/01/17 07:10:54 kcwu Exp $ */
#include "bbs.h"
#define BRC_STRLEN 15 /* Length of board name */
#define BRC_MAXSIZE 24576
@@ -532,10 +532,9 @@ load_boards(char *key)
(class_bid == -1 && bptr->nuser < 5))
continue;
addnewbrdstat(n, state);
-
- if (class_bid == -1)
- qsort(nbrd, brdnum, sizeof(boardstat_t), cmpboardfriends);
}
+ if (class_bid == -1)
+ qsort(nbrd, brdnum, sizeof(boardstat_t), cmpboardfriends);
tmp = (boardstat_t *) malloc(sizeof(boardstat_t) * brdnum);
memcpy(tmp, nbrd, sizeof(boardstat_t) * brdnum);
free(nbrd);