fix warnings

This commit is contained in:
sspitzer%netscape.com 1999-06-26 04:40:56 +00:00
parent b69eb47cf0
commit 8ea6512049

View File

@ -202,7 +202,11 @@ nsresult mime_sanity_check_fields (
else
if ((!to || !*to) && (!cc || !*cc) &&
(!bcc || !*bcc) && (!newsgroups || !*newsgroups))
#if 0
return MK_MIME_NO_RECIPIENTS;
#else
return NS_ERROR_FAILURE;
#endif
else
return NS_OK;
}