Correct line endings in FEAT response

This commit is contained in:
Vague Rant 2022-09-24 05:15:05 +10:00 committed by Maschell
parent 13e9c38512
commit 6ca2bbda45

View File

@ -228,7 +228,7 @@ static int32_t ftp_MODE(client_t *client, char *rest) {
}
static int32_t ftp_FEAT(client_t *client, char *rest) {
return write_reply(client, 211, "Features:\n UTF8\n211 End");
return write_reply(client, 211, "Features:\r\n UTF8\r\n211 End");
}
static int32_t ftp_OPTS(client_t *client, char *rest) {