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

Enabled local console output when unpacking .QWK packets (necessary for

output from qwktomsg() to get to event log).
parent 49091516
No related branches found
No related tags found
No related merge requests found
......@@ -1833,6 +1833,7 @@ void event_thread(void* arg)
if(fexistcase(str) && flength(str)>0) { /* silently ignore 0-byte QWK packets */
delfiles(sbbs->cfg.temp_dir,ALLFILES);
sbbs->online=ON_LOCAL;
sbbs->console|=CON_L_ECHO;
if(sbbs->unpack_qwk(str,i)==false) {
char newname[MAX_PATH+1];
sprintf(newname,"%s.%lx.bad",str,(long)now);
......@@ -1843,6 +1844,7 @@ void event_thread(void* arg)
sbbs->logline("Q!",logmsg);
}
}
sbbs->console&=~CON_L_ECHO;
sbbs->online=0;
remove(str);
}
......
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