Synch. up with upstream patch, fixes a missing space.

This commit is contained in:
Elio Maldonado 2011-02-11 08:49:38 -08:00
parent a8a5670437
commit 4847c439c7
1 changed files with 6 additions and 2 deletions

View File

@ -445,8 +445,12 @@ diff -up ./mozilla/security/nss/lib/smime/cmsudf.c.676036 ./mozilla/security/nss
NSSCMSGenericWrapperDataDestroy destroy,
NSSCMSGenericWrapperDataCallback decode_before,
NSSCMSGenericWrapperDataCallback decode_after,
@@ -465,7 +465,7 @@ NSS_CMSType_RegisterContentType(SECOidTa
typeInfo->type =type;
@@ -462,10 +462,10 @@ NSS_CMSType_RegisterContentType(SECOidTa
return SECSuccess;
}
typeInfo = PORT_ArenaNew(nsscmstypeArena, nsscmstypeInfo);
- typeInfo->type =type;
+ typeInfo->type = type;
typeInfo->size = size;
typeInfo->isData = isData;
- typeInfo->template = template;