summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2012-12-29 19:33:21 -0500
committerDan Winship <danw@gnome.org>2012-12-29 19:33:21 -0500
commit886741a1eb01103952617be3fe0f1cabb0bf5806 (patch)
tree70fa5dfefca738214491b983b0ba3c388e92790f
parent9e90b875f77b58c3851d9c6ad5d0cdc052e22c17 (diff)
downloadlibsoup-886741a1eb01103952617be3fe0f1cabb0bf5806.tar.gz
soup-auth-ntlm: small fix
-rw-r--r--libsoup/soup-auth-ntlm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsoup/soup-auth-ntlm.c b/libsoup/soup-auth-ntlm.c
index 11b75681..bbd04954 100644
--- a/libsoup/soup-auth-ntlm.c
+++ b/libsoup/soup-auth-ntlm.c
@@ -306,7 +306,7 @@ soup_auth_ntlm_update (SoupAuth *auth, SoupMessage *msg,
if (!response) {
priv->state = SOUP_NTLM_SSO_FAILED;
success = FALSE;
- } else if (!g_ascii_strcasecmp (header, "PW")) {
+ } else if (!g_ascii_strcasecmp (response, "PW")) {
priv->state = SOUP_NTLM_SSO_UNAVAILABLE;
g_free (response);
success = FALSE;