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

This commit is contained in:
bienvenu%nventure.com 2005-08-21 16:01:52 +00:00
parent 9505c902a3
commit 241a2d4e7c

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)