Skip to content
Snippets Groups Projects
Commit 9e183a66 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Eliminate some redundant log output in Unpack REP failure condition.

parent 097e0162
No related branches found
No related tags found
No related merge requests found
......@@ -64,10 +64,12 @@ bool sbbs_t::unpack_rep(char* repfile)
} else
SAFEPRINTF2(rep_fname,"%s%s.rep",cfg.temp_dir,cfg.sys_id);
if(!fexistcase(rep_fname)) {
bputs(text[QWKReplyNotReceived]);
logline(LOG_NOTICE,"U!",AttemptedToUploadREPpacket);
logline(LOG_NOTICE,nulstr,"REP file not received");
return(false);
if(online == ON_REMOTE) {
bputs(text[QWKReplyNotReceived]);
logline(LOG_NOTICE,"U!",AttemptedToUploadREPpacket);
} else
logline(LOG_NOTICE,nulstr,"REP file not received");
return false;
}
byte_estimate_to_str(flength(rep_fname), tmp, sizeof tmp, 1024, 1);
lprintf(LOG_INFO, "Unpacking QWK Reply Packet: %s (%s bytes)", rep_fname, tmp);
......
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