avio: AVIO_ prefixes for URL_ open flags.

This commit is contained in:
Anton Khirnov 2011-04-04 20:11:19 +02:00
parent 3d42d4937b
commit f87b1b373a
26 changed files with 92 additions and 65 deletions

View file

@ -100,7 +100,7 @@ static int gopher_open(URLContext *h, const char *uri, int flags)
ff_url_join(buf, sizeof(buf), "tcp", NULL, hostname, port, NULL);
s->hd = NULL;
err = ffurl_open(&s->hd, buf, URL_RDWR);
err = ffurl_open(&s->hd, buf, AVIO_RDWR);
if (err < 0)
goto fail;