From: Daniel Stenberg Date: Wed, 2 Sep 2020 10:47:01 +0000 (+0200) Subject: setopt: avoid curl_ on local variable X-Git-Tag: curl-7_73_0~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd51f04b1183f30650dabf27b4f40bf3db725083;p=thirdparty%2Fcurl.git setopt: avoid curl_ on local variable Closes #5906 --- diff --git a/lib/setopt.c b/lib/setopt.c index c44470e91c..a8f655b85b 100644 --- a/lib/setopt.c +++ b/lib/setopt.c @@ -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;