diff options
author | Martin Storsjö <martin@martin.st> | 2010-03-08 09:03:25 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-03-08 09:03:25 +0000 |
commit | c5c6e67c28e0e30b681cff55e8d85bb963d8640e (patch) | |
tree | d76a2596d799248e9e6cc7f3157b2f662424724b /libavformat/gopher.c | |
parent | da5bcafe3b728f255ad068fc406622515b435082 (diff) | |
download | ffmpeg-c5c6e67c28e0e30b681cff55e8d85bb963d8640e.tar.gz |
Rename url_split to ff_url_split
Since this function isn't in the public API, it should have an ff_ prefix.
Originally committed as revision 22321 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/gopher.c')
-rw-r--r-- | libavformat/gopher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/gopher.c b/libavformat/gopher.c index 396b358cb1..abb1748bad 100644 --- a/libavformat/gopher.c +++ b/libavformat/gopher.c @@ -89,7 +89,7 @@ static int gopher_open(URLContext *h, const char *uri, int flags) h->priv_data = s; /* needed in any case to build the host string */ - url_split(NULL, 0, auth, sizeof(auth), hostname, sizeof(hostname), &port, + ff_url_split(NULL, 0, auth, sizeof(auth), hostname, sizeof(hostname), &port, path, sizeof(path), uri); if (port < 0) |