diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2012-04-14 14:01:15 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2012-04-14 14:01:15 +0800 |
commit | 1896cacc2c0f0cee297dcda05e89678ba9b06445 (patch) | |
tree | 220a5c163451592836793708b7b0fced970c5fea | |
parent | 81a6ca0b55fa97347e2bada1dd073b4b985b5132 (diff) | |
download | pttbbs-1896cacc2c0f0cee297dcda05e89678ba9b06445.tar pttbbs-1896cacc2c0f0cee297dcda05e89678ba9b06445.tar.gz pttbbs-1896cacc2c0f0cee297dcda05e89678ba9b06445.tar.bz2 pttbbs-1896cacc2c0f0cee297dcda05e89678ba9b06445.tar.lz pttbbs-1896cacc2c0f0cee297dcda05e89678ba9b06445.tar.xz pttbbs-1896cacc2c0f0cee297dcda05e89678ba9b06445.tar.zst pttbbs-1896cacc2c0f0cee297dcda05e89678ba9b06445.zip |
update comments
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5639 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/bbs.c | 5 | ||||
-rw-r--r-- | pttbbs/mbbsd/nios.c | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/pttbbs/mbbsd/bbs.c b/pttbbs/mbbsd/bbs.c index 9243fdbe..5cbe9615 100644 --- a/pttbbs/mbbsd/bbs.c +++ b/pttbbs/mbbsd/bbs.c @@ -46,6 +46,11 @@ enum { */ int is_file_owner(const fileheader_t *fhdr, const userec_t *usr) { + // XXX there are two known issues here: + // 1. Anonymous post don't work anymore. + // 2. People cross-posting (^X) very old post can't own it. + // Since ptt.cc does not have anonymous boards anymore, these issues are in + // low priority. Sites using anonymous boards can fix on your own. if (strcmp(fhdr->owner, usr->userid) != EQUSTR) return 0; diff --git a/pttbbs/mbbsd/nios.c b/pttbbs/mbbsd/nios.c index 735194c6..53712676 100644 --- a/pttbbs/mbbsd/nios.c +++ b/pttbbs/mbbsd/nios.c @@ -452,9 +452,6 @@ vkey_process_cin() if (ch == EOF) // quick abort return EOF; - // TODO process telnet protocol? - // (it's now temporary done in cin_read -> tty_read... ) - // convert virtual terminal keys ch = vtkbd_process(ch, &vkctx.vtkbd); |