summaryrefslogtreecommitdiffstats
path: root/ext/soup
diff options
context:
space:
mode:
authorJonathan Matthew <notverysmart@gmail.com>2009-02-02 18:37:35 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-02-02 18:38:40 +0100
commit9218eae98bcb31bab78602c5c26813ac09623d9c (patch)
treec9e9fcae64077dc45b0f6af6122f187401e9d1fd /ext/soup
parentfe0bba045f1e1adeb39530086b4c0a9c58e38953 (diff)
Use correct flag for the GNOME proxy configuration
Fixes bug #552140.
Diffstat (limited to 'ext/soup')
-rw-r--r--ext/soup/gstsouphttpsrc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soup/gstsouphttpsrc.c b/ext/soup/gstsouphttpsrc.c
index 580d06b6..02ff4c81 100644
--- a/ext/soup/gstsouphttpsrc.c
+++ b/ext/soup/gstsouphttpsrc.c
@@ -1119,7 +1119,7 @@ gst_soup_http_src_start (GstBaseSrc * bsrc)
soup_session_async_new_with_options (SOUP_SESSION_ASYNC_CONTEXT,
src->context, SOUP_SESSION_USER_AGENT, src->user_agent,
#ifdef HAVE_LIBSOUP_GNOME
- SOUP_SESSION_ADD_FEATURE, SOUP_TYPE_PROXY_RESOLVER_GNOME,
+ SOUP_SESSION_ADD_FEATURE_BY_TYPE, SOUP_TYPE_PROXY_RESOLVER_GNOME,
#endif
NULL);
} else {