Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
658773d65b44452a84a696fbdba5552d1b5c1e32...52b2e20a5dd8330adb315d73900dd15c1444a13a
Commits (1)
Change "attempted to upload to invalid directory" msg
· 52b2e20a
Rob Swindell
authored
Jan 31, 2022
Make it more accurate/clear: "attempted to upload invalid path/filename"
52b2e20a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/sbbs3/ftpsrvr.c
src/sbbs3/ftpsrvr.c
+1
-1
No files found.
src/sbbs3/ftpsrvr.c
View file @
52b2e20a
...
...
@@ -4485,7 +4485,7 @@ static void ctrl_thread(void* arg)
sprintf
(
str
,
"%s.rep"
,
scfg
.
sys_id
);
if
(
!
(
startup
->
options
&
FTP_OPT_ALLOW_QWK
)
||
stricmp
(
p
,
str
))
{
lprintf
(
LOG_WARNING
,
"%04d <%s> !attempted to upload
to
invalid
directory
: '%s'"
lprintf
(
LOG_WARNING
,
"%04d <%s> !attempted to upload invalid
path/filename
: '%s'"
,
sock
,
user
.
alias
,
p
);
sockprintf
(
sock
,
sess
,
"553 Invalid directory."
);
continue
;
...
...