# HG changeset patch # User gpoirier # Date 1128948977 0 # Node ID 2acb2b765197f9ca82e2773fbfd5ead1e11fac40 # Parent 044260623695bea5ac0cf66c243b1d97694f2d65 Typo fix: RFC959 says that FTP commands should end with a carriage return followed by a line feed. Patch by Zuxy < zuxy POIS meng AH gmail POIS com> Original thread: Date: Oct 10, 2005 10:08 AM Subject: [MPlayer-dev-eng] [PATCH] Typo in libmpdemux/stream_ftp.c diff -r 044260623695 -r 2acb2b765197 libmpdemux/stream_ftp.c --- a/libmpdemux/stream_ftp.c Mon Oct 10 05:45:38 2005 +0000 +++ b/libmpdemux/stream_ftp.c Mon Oct 10 12:56:17 2005 +0000 @@ -298,7 +298,7 @@ } // Send the ABOR command // Ignore the return code as sometimes it fail with "nothing to abort" - FtpSendCmd("ABOR\n\r",p,rsp_txt); + FtpSendCmd("ABOR\r\n",p,rsp_txt); } // Open a new connection