mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
make empty names look fine in verbose output
This commit is contained in:
parent
d42c6b7e78
commit
9935d33b8e
@ -238,7 +238,7 @@ CURLcode http_auth_headers(struct connectdata *conn,
|
|||||||
Curl_http_auth_stage(data, 401);
|
Curl_http_auth_stage(data, 401);
|
||||||
}
|
}
|
||||||
infof(data, "Proxy auth using %s with user '%s'\n",
|
infof(data, "Proxy auth using %s with user '%s'\n",
|
||||||
auth, conn->proxyuser);
|
auth, conn->proxyuser?conn->proxyuser:"");
|
||||||
}
|
}
|
||||||
/* Send web authentication header if needed */
|
/* Send web authentication header if needed */
|
||||||
if (data->state.authstage == 401) {
|
if (data->state.authstage == 401) {
|
||||||
@ -287,7 +287,7 @@ CURLcode http_auth_headers(struct connectdata *conn,
|
|||||||
}
|
}
|
||||||
if(auth)
|
if(auth)
|
||||||
infof(data, "Server auth using %s with user '%s'\n",
|
infof(data, "Server auth using %s with user '%s'\n",
|
||||||
auth, conn->user);
|
auth, conn->user?conn->user:"");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user