2005-05-04 James Willcox <james@ximian.com>
[mono.git] / mcs / class / System / System.Net / DigestClient.cs
index 46650a76438e8689d75c5e7b076aa0d8a1d90702..208628cba486fe8f1cb2fd81b9cebeea9a1c280b 100644 (file)
@@ -291,7 +291,7 @@ namespace System.Net
                {
                        string response = String.Format ("{0}:{1}:", HA1 (username, password), Nonce);
                        if (QOP != null)
-                               response += String.Format ("{0}:{1}:{2}:", _nc.ToString ("x8"), CNonce, QOP);
+                               response += String.Format ("{0}:{1}:{2}:", _nc.ToString ("X8"), CNonce, QOP);
                        response += HA2 (webRequest);
                        return HashToHexString (response);
                }