avio: make url_write() internal.

This commit is contained in:
Anton Khirnov
2011-03-31 16:48:01 +02:00
parent dce3756459
commit 925e908bc7
15 changed files with 42 additions and 35 deletions

View File

@@ -35,7 +35,7 @@ typedef struct {
static int gopher_write(URLContext *h, const uint8_t *buf, int size)
{
GopherContext *s = h->priv_data;
return url_write(s->hd, buf, size);
return ffurl_write(s->hd, buf, size);
}
static int gopher_connect(URLContext *h, const char *path)