diff options
Diffstat (limited to 'mbbsd/bbs.c')
-rw-r--r-- | mbbsd/bbs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index 37138433..df2d1161 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -438,7 +438,7 @@ do_crosspost(char *brd, fileheader_t *postfile, const char *fpath) stampfile(genbuf, &fh); strcpy(fh.owner, postfile->owner); strcpy(fh.date, postfile->date); - strcpy(fh.title, postfile->title); + sprintf(fh.title,"%-30.30s[%s]", postfile->title, currboard); unlink(genbuf); Link(fpath, genbuf); postfile->filemode = FILE_LOCAL; |