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


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16720 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gpoirier 2005-10-10 12:56:17 +00:00
parent b136fa417f
commit f60c6132c2
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ static int seek(stream_t *s,off_t newpos) {
}
// 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