summaryrefslogtreecommitdiffstats
path: root/mbbsd/announce.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-04-03 21:08:37 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-04-03 21:08:37 +0800
commit09ad37923288982a63098a7aa346ea79748f7eca (patch)
treead0b24b51e730c1173f6a258e3aa0957f045c055 /mbbsd/announce.c
parentec3ed850be27c29ecc4d9fc2a0f0404f997fc7d6 (diff)
downloadpttbbs-09ad37923288982a63098a7aa346ea79748f7eca.tar
pttbbs-09ad37923288982a63098a7aa346ea79748f7eca.tar.gz
pttbbs-09ad37923288982a63098a7aa346ea79748f7eca.tar.bz2
pttbbs-09ad37923288982a63098a7aa346ea79748f7eca.tar.lz
pttbbs-09ad37923288982a63098a7aa346ea79748f7eca.tar.xz
pttbbs-09ad37923288982a63098a7aa346ea79748f7eca.tar.zst
pttbbs-09ad37923288982a63098a7aa346ea79748f7eca.zip
- fix a 7-year bug? force_open should really "force" open file.
- (internal) code refine - drop MAXPATHLEN and change few magic number (256) to PATHLEN. git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4072 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/announce.c')
-rw-r--r--mbbsd/announce.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/announce.c b/mbbsd/announce.c
index 6e09946d..8b947995 100644
--- a/mbbsd/announce.c
+++ b/mbbsd/announce.c
@@ -1484,7 +1484,7 @@ void BlogMain(int num)
if( hash[0] != 0 &&
getans("½Ð½T©w§R°£(Y/N)?[N] ") == 'y' ){
MYSQL mysql;
- char cmd[256];
+ char cmd[PATHLEN];
snprintf(cmd, sizeof(cmd), "delete from comment where "
"hash='%s'&&brdname='%s'", hash, currboard);
@@ -1530,7 +1530,7 @@ void BlogMain(int num)
case 'C': case 'c': {
fileheader_t item;
- char fpath[PATHLEN], adir[PATHLEN], buf[256];
+ char fpath[PATHLEN], adir[PATHLEN], buf[PATHLEN];
setapath(fpath, currboard);
stampdir(fpath, &item);
strlcpy(item.title, "¡» Blog", sizeof(item.title));