fix build bustage for when SMIME is not defined.
thanks to jag / jrgm / bz for the heads up. git-svn-id: svn://10.0.0.236/trunk@136827 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
c37c8539c6
commit
13e8176c83
@ -635,10 +635,14 @@ mime_find_class (const char *content_type, MimeHeaders *hdrs,
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef ENABLE_SMIME
|
||||
// see bug #189988
|
||||
if (opts && opts->format_out == nsMimeOutput::nsMimeMessageDecrypt && (clazz != (MimeObjectClass *)&mimeEncryptedCMSClass)) {
|
||||
if (opts && opts->format_out == nsMimeOutput::nsMimeMessageDecrypt &&
|
||||
(clazz != (MimeObjectClass *)&mimeEncryptedCMSClass &&
|
||||
clazz != (MimeObjectClass *)&mimeMultipartSignedCMSClass)) {
|
||||
clazz = (MimeObjectClass *)&mimeExternalObjectClass;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (!exact_match_p)
|
||||
NS_ASSERTION(clazz, "1.1 <rhp@netscape.com> 19 Mar 1999 12:00");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user