Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions addons/ftp/nxd_ftp_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -2012,7 +2012,7 @@ ULONG block_size;
/* The read command was successful! */
/* Now send a successful response to the client. */
_nx_ftp_server_response(&(client_req_ptr -> nx_ftp_client_request_control_socket), packet_ptr,
NX_FTP_CODE_COMPLETED, "File Sent");
NX_FTP_CODE_LOGOFF, "File Sent");
}
else
{
Expand Down Expand Up @@ -2965,7 +2965,7 @@ ULONG block_size;

/* Now send a successful response to the client. */
_nx_ftp_server_response(&(client_req_ptr -> nx_ftp_client_request_control_socket), packet_ptr,
NX_FTP_CODE_COMPLETED, "List End");
NX_FTP_CODE_LOGOFF, "List End");
}
else
{
Expand Down Expand Up @@ -3436,7 +3436,7 @@ ULONG block_size;

/* Now send a successful response to the client. */
_nx_ftp_server_response(&(client_req_ptr -> nx_ftp_client_request_control_socket), packet_ptr,
NX_FTP_CODE_COMPLETED, "List End");
NX_FTP_CODE_LOGOFF, "List End");
}
else
{
Expand Down Expand Up @@ -4596,7 +4596,7 @@ NX_FTP_CLIENT_REQUEST *client_req_ptr;

/* Now send "250" message to indicate successful file write. */
_nx_ftp_server_response(&(client_req_ptr -> nx_ftp_client_request_control_socket), packet_ptr,
NX_FTP_CODE_COMPLETED, "File Written");
NX_FTP_CODE_LOGOFF, "File Written");
}
else
{
Expand Down