diff options
author | Lukasz Marek <lukasz.m.luki@gmail.com> | 2013-05-30 03:54:28 +0200 |
---|---|---|
committer | Lukasz Marek <lukasz.m.luki@gmail.com> | 2013-05-31 15:57:58 +0200 |
commit | 80cce899f62cfb8040b4a020911773fe07627fcd (patch) | |
tree | 9509efcc7f62fd703323df33657227d218d0707b /libavformat/ftp.c | |
parent | afa30e51d1aba6836bb6639e2735435081dc1cf2 (diff) | |
download | ffmpeg-80cce899f62cfb8040b4a020911773fe07627fcd.tar.gz |
ftp: rename function name
ftp_send_command was used only once.
This commit makes this function specific, not generic
Diffstat (limited to 'libavformat/ftp.c')
-rw-r--r-- | libavformat/ftp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/ftp.c b/libavformat/ftp.c index f550c14d17..3b69bc1d19 100644 --- a/libavformat/ftp.c +++ b/libavformat/ftp.c @@ -376,14 +376,14 @@ static int ftp_store(FTPContext *s) return 0; } -static int ftp_send_command(FTPContext *s, const char* command) +static int ftp_type(FTPContext *s) { int err; + const char *command = "TYPE I\r\n"; if ((err = ffurl_write(s->conn_control, command, strlen(command))) < 0) return err; - ftp_status(s, &err, NULL, NULL, NULL, -1); - if (err != 2) + if (ftp_status(s, NULL, NULL, NULL, NULL, 200) != 200) return AVERROR(EIO); return 0; @@ -459,7 +459,7 @@ static int ftp_open(URLContext *h, const char *url, int flags) if ((err = ftp_auth(s, auth)) < 0) goto fail; - if ((err = ftp_send_command(s, "TYPE I\r\n")) < 0) + if ((err = ftp_type(s)) < 0) goto fail; if ((err = ftp_current_dir(s)) < 0) |