avio: make url_read() internal.

This commit is contained in:
Anton Khirnov 2011-03-31 16:31:43 +02:00
parent 0589da0aa5
commit bc371aca46
11 changed files with 29 additions and 23 deletions

View file

@ -115,7 +115,7 @@ static int gopher_open(URLContext *h, const char *uri, int flags)
static int gopher_read(URLContext *h, uint8_t *buf, int size)
{
GopherContext *s = h->priv_data;
int len = url_read(s->hd, buf, size);
int len = ffurl_read(s->hd, buf, size);
return len;
}