summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2010-10-22 23:24:59 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2010-10-22 23:24:59 +0800
commit875041a286e53726878ac913108fe84a80840c97 (patch)
treef2c121b01f2f32b541fac3784c7a4579ad664ece
parent889ddfb63f0999c7d9ba878b80db8bc47815f73d (diff)
downloadpttbbs-875041a286e53726878ac913108fe84a80840c97.tar
pttbbs-875041a286e53726878ac913108fe84a80840c97.tar.gz
pttbbs-875041a286e53726878ac913108fe84a80840c97.tar.bz2
pttbbs-875041a286e53726878ac913108fe84a80840c97.tar.lz
pttbbs-875041a286e53726878ac913108fe84a80840c97.tar.xz
pttbbs-875041a286e53726878ac913108fe84a80840c97.tar.zst
pttbbs-875041a286e53726878ac913108fe84a80840c97.zip
is this message really that hard to understand?
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5139 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/board.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/board.c b/pttbbs/mbbsd/board.c
index 28c9f4bb..f53fc35a 100644
--- a/pttbbs/mbbsd/board.c
+++ b/pttbbs/mbbsd/board.c
@@ -109,6 +109,7 @@ int enter_board(const char *boardname)
return -3;
setbpath(bpath, bname);
+ // mkdir(bpath, 755);
if (stat(bpath, &st) == -1) {
return -3;
}
@@ -290,7 +291,7 @@ b_config(void)
#define LNBOARDINFO (19)
#define LNPOSTRES (12)
-#define COLPOSTRES (50)
+#define COLPOSTRES (48)
int ytitle = b_lines - LNBOARDINFO;
@@ -470,7 +471,7 @@ b_config(void)
i = (int)lpost * 10;
attr = (cuser.numposts < i) ? 1 : 0;
if (attr) outs(ANSI_COLOR(1;31) "*");
- prints("各看板有效文章共 %d 篇以上", i);
+ prints("各看板有效文章合計 %d 篇以上", i);
if (attr) outs(ANSI_RESET);
hasres = 1;
}