Skip to content
Snippets Groups Projects
Commit b8401ebd authored by rswindell's avatar rswindell
Browse files

Remove subject length limits on QWKnet sub-boards.

parent 85ebd390
No related branches found
No related tags found
No related merge requests found
......@@ -256,16 +256,20 @@ bool sbbs_t::writemsg(char *fname, char *top, char *title, long mode, int subnum
if(!(mode&(WM_EXTDESC|WM_SUBJ_RO))) {
if(mode&WM_FILE) {
#if 0
max_title_len=12; /* ToDo: implied 8.3 filename limit! */
#endif
CRLF;
bputs(text[Filename]);
}
else {
#if 0
max_title_len=LEN_TITLE;
if(mode&WM_QWKNET
|| (subnum!=INVALID_SUB
&& (cfg.sub[subnum]->misc&(SUB_QNET|SUB_INET|SUB_FIDO))==SUB_QNET))
max_title_len=25;
#endif
bputs(text[SubjectPrompt]);
}
if(!getstr(title,max_title_len,mode&WM_FILE ? K_LINE : K_LINE|K_EDIT|K_AUTODEL)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment