diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2009-11-10 08:48:47 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2009-11-10 09:03:53 (GMT) |
commit | 38dd2ed2b03656283a3c6170eda6d445ff1241f4 (patch) | |
tree | 77bde3ca1435113d130d82a85cc58e15dbdfe0db /src/network/access | |
parent | 91ad55af99b54b7a5cfdf08984ece030fd70692c (diff) | |
download | Qt-38dd2ed2b03656283a3c6170eda6d445ff1241f4.zip Qt-38dd2ed2b03656283a3c6170eda6d445ff1241f4.tar.gz Qt-38dd2ed2b03656283a3c6170eda6d445ff1241f4.tar.bz2 |
QNAM HTTP Code: Start authorization header with capital letter
HTTP header names are case insensitive, but stick to what all browsers
etc. use to work around buggy servers.
Task-number: QTBUG-5618
Reviewed-by: Peter Hartmann
Diffstat (limited to 'src/network/access')
-rw-r--r-- | src/network/access/qhttpnetworkconnection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index 1124337..8dd7a00 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -372,7 +372,7 @@ void QHttpNetworkConnectionPrivate::createAuthorization(QAbstractSocket *socket, QAuthenticatorPrivate *priv = QAuthenticatorPrivate::getPrivate(channels[i].authenticator); if (priv && priv->method != QAuthenticatorPrivate::None) { QByteArray response = priv->calculateResponse(request.d->methodName(), request.d->uri(false)); - request.setHeaderField("authorization", response); + request.setHeaderField("Authorization", response); } } } @@ -381,7 +381,7 @@ void QHttpNetworkConnectionPrivate::createAuthorization(QAbstractSocket *socket, QAuthenticatorPrivate *priv = QAuthenticatorPrivate::getPrivate(channels[i].proxyAuthenticator); if (priv && priv->method != QAuthenticatorPrivate::None) { QByteArray response = priv->calculateResponse(request.d->methodName(), request.d->uri(false)); - request.setHeaderField("proxy-authorization", response); + request.setHeaderField("Proxy-Authorization", response); } } } |