# HG changeset patch # User gpoirier # Date 1173009166 0 # Node ID 467a411b5d265659163fb911d674f4e4906a08b1 # Parent 5535b52e5bd4eb23de4507a418ee62227a64d53b make HTTP MOVED messages also work in ffmpeg (302 is essentially the same as 303). patch by "Ronald S. Bultje" % rbultje A ronald P bitfreak P net% original thread: Date: Mar 4, 2007 1:21 AM Subject: [Ffmpeg-devel] http move diff -r 5535b52e5bd4 -r 467a411b5d26 http.c --- a/http.c Sun Mar 04 01:58:10 2007 +0000 +++ b/http.c Sun Mar 04 11:52:46 2007 +0000 @@ -96,7 +96,7 @@ s->hd = hd; if (http_connect(h, path, hoststr, auth, &location_changed) < 0) goto fail; - if (s->http_code == 303 && location_changed == 1) { + if ((s->http_code == 302 || s->http_code == 303) && location_changed == 1) { /* url moved, get next */ url_close(hd); if (redirects++ >= MAX_REDIRECTS)