summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-10-10 12:56:17 +0000
committergpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-10-10 12:56:17 +0000
commitf60c6132c251758ccf5b981715e41d8dd0ea626a (patch)
tree3fe6c62a91a7d41d209487c45fd324ed2d313eef
parentb136fa417f74c3804d52b376a17f7f4741560c6d (diff)
downloadmpv-f60c6132c251758ccf5b981715e41d8dd0ea626a.tar.bz2
mpv-f60c6132c251758ccf5b981715e41d8dd0ea626a.tar.xz
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
-rw-r--r--libmpdemux/stream_ftp.c2
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