diff options
-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); |