Skip to content

Commit

Permalink
Merge pull request #175 from matejvrba/master
Browse files Browse the repository at this point in the history
fix: server sending "227 Logout." response
  • Loading branch information
jedisct1 authored Sep 12, 2024
2 parents 0e64fb4 + 9dc79d1 commit 8a847f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ftp_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ void parser(void)
die(421, LOG_INFO, MSG_TIMEOUT_PARSER);
#endif
case -2:
return;
die(425, LOG_INFO, MSG_LOGOUT);
}
#ifdef DEBUG
if (debug != 0) {
Expand Down

0 comments on commit 8a847f5

Please sign in to comment.