http: fix CURL_DISABLE_BEARER_AUTH breakage

When bearer auth was disabled, the if/else logic got wrong and caused
problems.

Follow-up to e92edfbef6
Fixes #11892
Reported-by: Aleksander Mazur
Closes #11895
This commit is contained in:
Daniel Stenberg 2023-09-20 08:46:56 +02:00
Родитель 452182332d
Коммит 0d3956b8c6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -1139,6 +1139,8 @@ CURLcode Curl_http_input_auth(struct Curl_easy *data, bool proxy,
data->state.authproblem = TRUE;
}
}
#else
;
#endif
/* there may be multiple methods on one line, so keep reading */