From d8e0b2e9bff5daa38605cd775699b0c0ceb54520 Mon Sep 17 00:00:00 2001 From: "sdwilsh@shawnwilsher.com" Date: Wed, 11 Jul 2007 14:20:11 -0700 Subject: [PATCH] Bustage fix --- caps/src/nsPrincipal.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/caps/src/nsPrincipal.cpp b/caps/src/nsPrincipal.cpp index 78fe6258aa9..b6d5b8ac8d6 100755 --- a/caps/src/nsPrincipal.cpp +++ b/caps/src/nsPrincipal.cpp @@ -618,12 +618,12 @@ nsPrincipal::GetHashValue(PRUint32* aValue) // If there is a certificate, it takes precendence over the codebase. if (mCert) { - *aValue = nsCRT::HashCode(mCert->fingerprint.get(), nsnull); + *aValue = nsCRT::HashCode(mCert->fingerprint.get()); } else { nsCAutoString str; mCodebase->GetSpec(str); - *aValue = nsCRT::HashCode(str.get(), nsnull); + *aValue = nsCRT::HashCode(str.get()); } return NS_OK;