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

Log an info-level message before unpacking a REP packet

parent ccef9d28
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,8 @@ bool sbbs_t::unpack_rep(char* repfile)
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);
long file_count = extract_files_from_archive(rep_fname
,/* outdir: */cfg.temp_dir
,/* allowed_filename_chars: */SAFEST_FILENAME_CHARS
......
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