easygetopt: pass a valid enum to avoid compiler warning

"integer constant not in range of enumerated type 'CURLoption'"

Reported-by: Gisle Vanem
Bug: 6ebe63fac2 (commitcomment-42042843)

Closes #5915
This commit is contained in:
Daniel Stenberg 2020-09-05 12:52:03 +02:00
Родитель a86cc7e2ab
Коммит 879007f811
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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)