Fixing build bustage. need to #ifdef PR_LOGGING mSpec.

This commit is contained in:
dougt%netscape.com 2000-01-24 22:28:27 +00:00
parent f90dd072fc
commit b36e63d300

View File

@ -902,7 +902,9 @@ nsFileTransport::Process(void)
if (mProgress) {
// XXX fix up this message for i18n
nsAutoString msg = "Read ";
#ifdef PR_LOGGING
msg += (const char*)mSpec;
#endif
(void)mProgress->OnStatus(this, mContext, msg.mUStr);
}
mContext = null_nsCOMPtr();
@ -1040,7 +1042,9 @@ nsFileTransport::Process(void)
if (mProgress) {
// XXX fix up this message for i18n
nsAutoString msg = "Wrote ";
#ifdef PR_LOGGING
msg += (const char*)mSpec;
#endif
(void)mProgress->OnStatus(this, mContext, msg.mUStr);
}
mContext = null_nsCOMPtr();