Fixing regression caused by bug 292368. This patch fixes bug 296369. Simple fix -- use the right contract id.

This commit is contained in:
dougt%meer.net 2005-06-02 15:27:31 +00:00
parent f4988dc183
commit 88fc330993
2 changed files with 1 additions and 3 deletions

View File

@ -63,7 +63,7 @@
nsHttpDigestAuth::nsHttpDigestAuth()
{
mVerifier = do_GetService(SIGNATURE_VERIFIER_CONTRACTID);
mVerifier = do_GetService("@mozilla.org/security/hash;1");
mGotVerifier = (mVerifier != nsnull);
#if defined(PR_LOGGING)

View File

@ -57,8 +57,6 @@
#define EXPANDED_DIGEST_LENGTH 32
#define NONCE_COUNT_LENGTH 8
class nsISignatureVerifier;
//-----------------------------------------------------------------------------
// nsHttpDigestAuth
//-----------------------------------------------------------------------------