QAuthenticatorPrivate::parseHttpResponse: mark "host" as unused
... in the case where it is unused Change-Id: Ia181b975f07a8d1eee078867b98168ec5c326612 Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>bb10
parent
94c15bda6e
commit
25a0153802
|
|
@ -425,6 +425,9 @@ void QAuthenticatorPrivate::updateCredentials()
|
|||
|
||||
void QAuthenticatorPrivate::parseHttpResponse(const QList<QPair<QByteArray, QByteArray> > &values, bool isProxy, const QString &host)
|
||||
{
|
||||
#if !QT_CONFIG(gssapi)
|
||||
Q_UNUSED(host);
|
||||
#endif
|
||||
const char *search = isProxy ? "proxy-authenticate" : "www-authenticate";
|
||||
|
||||
method = None;
|
||||
|
|
|
|||
Loading…
Reference in New Issue