Change initiator msg from 200 to 220

This commit is contained in:
Michael Theall 2016-01-15 12:13:56 -06:00
parent 9d2a3906f3
commit f7156e8ca9

View File

@ -748,7 +748,7 @@ ftp_session_new(int listen_fd)
session->cmd_fd = new_fd;
/* send initiator response */
rc = ftp_send_response(session, 200, "Hello!\r\n");
rc = ftp_send_response(session, 220, "Hello!\r\n");
if(rc <= 0)
ftp_session_destroy(session);
}