diff options
author | gpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-10-10 12:56:17 +0000 |
---|---|---|
committer | gpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-10-10 12:56:17 +0000 |
commit | f60c6132c251758ccf5b981715e41d8dd0ea626a (patch) | |
tree | 3fe6c62a91a7d41d209487c45fd324ed2d313eef /libmpdemux | |
parent | b136fa417f74c3804d52b376a17f7f4741560c6d (diff) |
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
Diffstat (limited to 'libmpdemux')
-rw-r--r-- | libmpdemux/stream_ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/stream_ftp.c b/libmpdemux/stream_ftp.c index e3bdeb4e75..ad81300d1c 100644 --- a/libmpdemux/stream_ftp.c +++ b/libmpdemux/stream_ftp.c @@ -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 |