summaryrefslogtreecommitdiffstats
path: root/src/network/kernel/qauthenticator_p.h
diff options
context:
space:
mode:
authorMarkus Goetz <Markus.Goetz@nokia.com>2010-10-18 14:21:47 (GMT)
committerMarkus Goetz <Markus.Goetz@nokia.com>2010-10-27 12:40:26 (GMT)
commit4c29a590cbdd68006906cb8ce3250f8d19caa3d6 (patch)
treef8c2f23570085a6eaab2a9d0927830e0bd2ac3e3 /src/network/kernel/qauthenticator_p.h
parentb6b276495b0d02e3bcfa62b793c83f5adcf178c7 (diff)
downloadQt-4c29a590cbdd68006906cb8ce3250f8d19caa3d6.zip
Qt-4c29a590cbdd68006906cb8ce3250f8d19caa3d6.tar.gz
Qt-4c29a590cbdd68006906cb8ce3250f8d19caa3d6.tar.bz2
QAuthenticator: Fix NTLMv2 credential caching of QNAM
QNetworkAccessManager used the user() function for caching the credentials when doing HTTP authentication with NTLMv2. For that to work it needs to return the same value as was put in with setUser(). Reviewed-by: Peter Hartmann Reviewed-by: Prasanth Task-Number: QTBUG-13234
Diffstat (limited to 'src/network/kernel/qauthenticator_p.h')
-rw-r--r--src/network/kernel/qauthenticator_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/network/kernel/qauthenticator_p.h b/src/network/kernel/qauthenticator_p.h
index 4e09360..9f2e607 100644
--- a/src/network/kernel/qauthenticator_p.h
+++ b/src/network/kernel/qauthenticator_p.h
@@ -71,6 +71,7 @@ public:
QAtomicInt ref;
QString user;
+ QString extractedUser;
QString password;
QVariantHash options;
Method method;