Родитель
5507a6ae41
Коммит
dd51f04b11
|
@ -2521,9 +2521,9 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param)
|
||||||
* Set the RTSP request method (OPTIONS, SETUP, PLAY, etc...)
|
* Set the RTSP request method (OPTIONS, SETUP, PLAY, etc...)
|
||||||
* Would this be better if the RTSPREQ_* were just moved into here?
|
* Would this be better if the RTSPREQ_* were just moved into here?
|
||||||
*/
|
*/
|
||||||
long curl_rtspreq = va_arg(param, long);
|
long in_rtspreq = va_arg(param, long);
|
||||||
Curl_RtspReq rtspreq = RTSPREQ_NONE;
|
Curl_RtspReq rtspreq = RTSPREQ_NONE;
|
||||||
switch(curl_rtspreq) {
|
switch(in_rtspreq) {
|
||||||
case CURL_RTSPREQ_OPTIONS:
|
case CURL_RTSPREQ_OPTIONS:
|
||||||
rtspreq = RTSPREQ_OPTIONS;
|
rtspreq = RTSPREQ_OPTIONS;
|
||||||
break;
|
break;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче