summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-09-02 12:47:01 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-09-02 22:41:59 +0200
commitdd51f04b1183f30650dabf27b4f40bf3db725083 (patch)
treed33f5b2792ebcbab94fda115e46841147679b00d
parent5507a6ae412e2b28636f4dacc060b74578caa59d (diff)
downloadcurl-dd51f04b1183f30650dabf27b4f40bf3db725083.tar.gz
setopt: avoid curl_ on local variable
Closes #5906
-rw-r--r--lib/setopt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/setopt.c b/lib/setopt.c
index c44470e91..a8f655b85 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;