From: Daniel Stenberg Date: Sun, 14 Aug 2011 17:07:54 +0000 (+0200) Subject: RTSP: GET_PARAMETER requests have a body X-Git-Tag: curl-7_22_0~111 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f0c59c6c2cc584ad4bb65ec1bb9fb1644530ebfc;p=thirdparty%2Fcurl.git RTSP: GET_PARAMETER requests have a body Bug: http://curl.haxx.se/bug/view.cgi?id=3383692 --- diff --git a/lib/rtsp.c b/lib/rtsp.c index 3ce8ad51e7..198c25dc13 100644 --- a/lib/rtsp.c +++ b/lib/rtsp.c @@ -294,6 +294,7 @@ static CURLcode rtsp_do(struct connectdata *conn, bool *done) case RTSPREQ_GET_PARAMETER: /* GET_PARAMETER's no_body status is determined later */ p_request = "GET_PARAMETER"; + data->set.opt_no_body = FALSE; break; case RTSPREQ_SET_PARAMETER: p_request = "SET_PARAMETER";