diff --git a/ChangeLog b/ChangeLog index 07eaacd82b..d901318c48 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-01-18 Sebastian Dröge + + * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_uri_get_protocols): + Add support for WebDAV. + 2008-01-18 Sebastian Dröge Patch by: Wouter Cloetens diff --git a/ext/soup/gstsouphttpsrc.c b/ext/soup/gstsouphttpsrc.c index f3de3592aa..064d4c5c1e 100644 --- a/ext/soup/gstsouphttpsrc.c +++ b/ext/soup/gstsouphttpsrc.c @@ -782,7 +782,7 @@ gst_souphttp_src_uri_get_type (void) static gchar ** gst_souphttp_src_uri_get_protocols (void) { - static gchar *protocols[] = { "http", "https", NULL }; + static gchar *protocols[] = { "http", "https", "dav", "davs", NULL }; return protocols; }