gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] 96/411: easygetopt: pass a valid enum to avoid compiler warning


From: gnunet
Subject: [gnurl] 96/411: easygetopt: pass a valid enum to avoid compiler warning
Date: Wed, 13 Jan 2021 01:18:31 +0100

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

nikita pushed a commit to branch master
in repository gnurl.

commit 879007f8118771f4896334731aaca5850a154675
Author: Daniel Stenberg <daniel@haxx.se>
AuthorDate: Sat Sep 5 12:52:03 2020 +0200

    easygetopt: pass a valid enum to avoid compiler warning
    
    "integer constant not in range of enumerated type 'CURLoption'"
    
    Reported-by: Gisle Vanem
    Bug: 
https://github.com/curl/curl/commit/6ebe63fac23f38df911edc348e8ccc72280f9434#commitcomment-42042843
    
    Closes #5915
---
 lib/easygetopt.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/easygetopt.c b/lib/easygetopt.c
index c4c6f631c..cac8378e7 100644
--- a/lib/easygetopt.c
+++ b/lib/easygetopt.c
@@ -51,7 +51,8 @@ static struct curl_easyoption *lookup(const char *name, 
CURLoption id)
 
 const struct curl_easyoption *curl_easy_option_by_name(const char *name)
 {
-  return lookup(name, 0);
+  /* when name is used, the id argument is ignored */
+  return lookup(name, CURLOPT_LASTENTRY);
 }
 
 const struct curl_easyoption *curl_easy_option_by_id(CURLoption id)

-- 
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]