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
Branches
Tags
No related merge requests found
...@@ -69,6 +69,8 @@ bool sbbs_t::unpack_rep(char* repfile) ...@@ -69,6 +69,8 @@ bool sbbs_t::unpack_rep(char* repfile)
logline(LOG_NOTICE,nulstr,"REP file not received"); logline(LOG_NOTICE,nulstr,"REP file not received");
return(false); 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 long file_count = extract_files_from_archive(rep_fname
,/* outdir: */cfg.temp_dir ,/* outdir: */cfg.temp_dir
,/* allowed_filename_chars: */SAFEST_FILENAME_CHARS ,/* allowed_filename_chars: */SAFEST_FILENAME_CHARS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment