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

Fix sbbs_t::trashcan(), broken one month ago

Transposed the order of parameters in commit 20dbd40c. Oops.
parent d3c11499
Branches
No related tags found
No related merge requests found
Pipeline #5478 passed
......@@ -960,7 +960,7 @@ bool sbbs_t::trashcan(const char *insearchof, const char *name, struct trash* tr
char str[MAX_PATH+1];
bool result;
result=::trashcan2(&cfg, insearchof, name, NULL, trash);
result=::trashcan2(&cfg, insearchof, NULL, name, trash);
if(result) {
sprintf(str,"%sbad%s.msg",cfg.text_dir,name);
if(fexistcase(str)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment