docs: drop basically

Another filler word

Closes #20835
This commit is contained in:
Daniel Stenberg 2026-03-06 11:37:33 +01:00
parent 86ea3abd41
commit 1495489c41
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
17 changed files with 62 additions and 67 deletions

View file

@ -974,9 +974,8 @@ static CURLcode auth_basic(struct Curl_easy *data,
*availp |= CURLAUTH_BASIC;
authp->avail |= CURLAUTH_BASIC;
if(authp->picked == CURLAUTH_BASIC) {
/* We asked for Basic authentication but got a 40X back
anyway, which basically means our name+password is not
valid. */
/* We asked for Basic authentication but got a 40X back anyway, which
means our name+password is not valid. */
authp->avail = CURLAUTH_NONE;
infof(data, "Basic authentication problem, ignoring.");
data->state.authproblem = TRUE;
@ -993,8 +992,8 @@ static CURLcode auth_bearer(struct Curl_easy *data,
*availp |= CURLAUTH_BEARER;
authp->avail |= CURLAUTH_BEARER;
if(authp->picked == CURLAUTH_BEARER) {
/* We asked for Bearer authentication but got a 40X back
anyway, which basically means our token is not valid. */
/* We asked for Bearer authentication but got a 40X back anyway, which
means our token is not valid. */
authp->avail = CURLAUTH_NONE;
infof(data, "Bearer authentication problem, ignoring.");
data->state.authproblem = TRUE;