gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 84/411: setopt: avoid curl_ on local variable


From: gnunet
Subject: [gnurl] 84/411: setopt: avoid curl_ on local variable
Date: Wed, 13 Jan 2021 01:18:19 +0100

This is an automated email from the git hooks/post-receive script.

nikita pushed a commit to branch master
in repository gnurl.

commit dd51f04b1183f30650dabf27b4f40bf3db725083
Author: Daniel Stenberg <daniel@haxx.se>
AuthorDate: Wed Sep 2 12:47:01 2020 +0200

    setopt: avoid curl_ on local variable
    
    Closes #5906
---
 lib/setopt.c | 4 ++--
 1 file 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;

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]