1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

setopt: avoid curl_ on local variable

Closes #5906
This commit is contained in:
Daniel Stenberg 2020-09-02 12:47:01 +02:00
parent 5507a6ae41
commit dd51f04b11
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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...)
* 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;
switch(curl_rtspreq) {
switch(in_rtspreq) {
case CURL_RTSPREQ_OPTIONS:
rtspreq = RTSPREQ_OPTIONS;
break;