summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/curl/gstcurlsink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curl/gstcurlsink.c b/ext/curl/gstcurlsink.c
index 4306de43b..7bf9b43b2 100644
--- a/ext/curl/gstcurlsink.c
+++ b/ext/curl/gstcurlsink.c
@@ -849,7 +849,7 @@ gst_curl_sink_handle_transfer (GstCurlSink * sink)
if (!proxy_conn_established && (resp_proxy != RESPONSE_CONNECT_PROXY)
&& proxy_auth) {
curl_easy_getinfo (sink->curl, CURLINFO_HTTP_CONNECTCODE, &resp_proxy);
- if ((resp_proxy == RESPONSE_CONNECT_PROXY)) {
+ if (resp_proxy == RESPONSE_CONNECT_PROXY) {
GST_LOG ("received HTTP/1.0 200 Connection Established");
/* Workaround: redefine HTTP headers before connecting to HTTP server.
* When talking to proxy, the Content-Length: 0 is send with the request.