diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-08-14 19:07:54 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-08-14 19:07:54 +0200 |
commit | f0c59c6c2cc584ad4bb65ec1bb9fb1644530ebfc (patch) | |
tree | a2b833019cc5ec48578b6b3f32ac6cb3070e7725 /lib/rtsp.c | |
parent | dfb18da5dcdc858636a78887079d87917b0a0f20 (diff) | |
download | curl-f0c59c6c2cc584ad4bb65ec1bb9fb1644530ebfc.tar.gz |
RTSP: GET_PARAMETER requests have a body
Bug: http://curl.haxx.se/bug/view.cgi?id=3383692
Diffstat (limited to 'lib/rtsp.c')
-rw-r--r-- | lib/rtsp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/rtsp.c b/lib/rtsp.c index 3ce8ad51e..198c25dc1 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"; |