fix build bustage when disable logging is turned on, r=cneberg, backing out part of patch for 280792

git-svn-id: svn://10.0.0.236/trunk@178548 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bienvenu%nventure.com
2005-08-21 16:01:52 +00:00
parent 5fceb8c89a
commit cea4a70170

View File

@@ -220,7 +220,6 @@ static nsModuleComponentInfo components[] = {
};
//-----------------------------------------------------------------------------
#if defined( PR_LOGGING )
PRLogModuleInfo *gNegotiateLog;
@@ -231,6 +230,8 @@ InitNegotiateAuth(nsIModule *self)
gNegotiateLog = PR_NewLogModule("negotiateauth");
return NS_OK;
}
#else
#define InitNegotiateAuth nsnull
#endif
NS_IMPL_NSGETMODULE_WITH_CTOR(nsAuthModule, components, InitNegotiateAuth)