diff --git a/mozilla/netwerk/build/Makefile.in b/mozilla/netwerk/build/Makefile.in index e437eb2b98a..bb5e2be6f28 100644 --- a/mozilla/netwerk/build/Makefile.in +++ b/mozilla/netwerk/build/Makefile.in @@ -65,7 +65,6 @@ REQUIRES = xpcom \ intl \ uconv \ unicharutil \ - caps \ $(ZLIB_REQUIRES) \ $(NULL) diff --git a/mozilla/netwerk/protocol/http/src/nsHttpDigestAuth.cpp b/mozilla/netwerk/protocol/http/src/nsHttpDigestAuth.cpp index ad05ac1e6ea..214cbf90bad 100644 --- a/mozilla/netwerk/protocol/http/src/nsHttpDigestAuth.cpp +++ b/mozilla/netwerk/protocol/http/src/nsHttpDigestAuth.cpp @@ -44,6 +44,7 @@ #include "nsHttpDigestAuth.h" #include "nsIHttpChannel.h" #include "nsIServiceManager.h" +#include "nsISignatureVerifier.h" #include "nsXPCOM.h" #include "nsISupportsPrimitives.h" #include "nsIURI.h" @@ -74,6 +75,9 @@ nsHttpDigestAuth::nsHttpDigestAuth() #endif } +nsHttpDigestAuth::~nsHttpDigestAuth() +{} + //----------------------------------------------------------------------------- // nsHttpDigestAuth::nsISupports //----------------------------------------------------------------------------- diff --git a/mozilla/netwerk/protocol/http/src/nsHttpDigestAuth.h b/mozilla/netwerk/protocol/http/src/nsHttpDigestAuth.h index 2104226f7d0..b2cc6688844 100644 --- a/mozilla/netwerk/protocol/http/src/nsHttpDigestAuth.h +++ b/mozilla/netwerk/protocol/http/src/nsHttpDigestAuth.h @@ -43,7 +43,6 @@ #define nsDigestAuth_h__ #include "nsIHttpAuthenticator.h" -#include "nsISignatureVerifier.h" #include "nsString.h" #include "nsCOMPtr.h" @@ -57,6 +56,8 @@ #define EXPANDED_DIGEST_LENGTH 32 #define NONCE_COUNT_LENGTH 8 +class nsISignatureVerifier; + //----------------------------------------------------------------------------- // nsHttpDigestAuth //----------------------------------------------------------------------------- @@ -68,7 +69,7 @@ class nsHttpDigestAuth : public nsIHttpAuthenticator NS_DECL_NSIHTTPAUTHENTICATOR nsHttpDigestAuth(); - virtual ~nsHttpDigestAuth() {} + ~nsHttpDigestAuth(); protected: nsresult ExpandToHex(const char * digest, char * result);