From 73ee93a7cc1f0bf27c7dcf92ca0a578c4b804956 Mon Sep 17 00:00:00 2001 From: "wtc%netscape.com" Date: Fri, 26 Oct 2001 21:30:58 +0000 Subject: [PATCH] Bugzilla bug 106836: fixed misspelled "Privilege". The patch is contributed by timeless@mac.com. --- security/nss/lib/certhigh/certhtml.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/security/nss/lib/certhigh/certhtml.c b/security/nss/lib/certhigh/certhtml.c index 60dc5d4d3ca3..927a5dbbf43d 100644 --- a/security/nss/lib/certhigh/certhtml.c +++ b/security/nss/lib/certhigh/certhtml.c @@ -34,7 +34,7 @@ /* * certhtml.c --- convert a cert to html * - * $Id: certhtml.c,v 1.2 2001/09/20 21:41:34 relyea%netscape.com Exp $ + * $Id: certhtml.c,v 1.3 2001/10/26 21:30:58 wtc%netscape.com Exp $ */ #include "seccomon.h" @@ -307,7 +307,7 @@ static char *sec_FortezzaClearance(SECItem *clearance) { return "None"; } -static char *sec_FortezzaMessagePriviledge(SECItem *priv) { +static char *sec_FortezzaMessagePrivilege(SECItem *priv) { unsigned char clr = 0; if (priv->len > 0) { clr = (priv->data[0]) & 0x78; } @@ -332,7 +332,7 @@ static char *sec_FortezzaMessagePriviledge(SECItem *priv) { } -static char *sec_FortezzaCertPriviledge(SECItem *priv) { +static char *sec_FortezzaCertPrivilege(SECItem *priv) { unsigned char clr = 0; if (priv->len > 0) { clr = priv->data[0]; } @@ -379,9 +379,9 @@ static char *htmlcertstrings[] = { 0, /* notAfter does here */ "
Clearance:", 0, - "
DSS Priviledges:", + "
DSS Privileges:", 0, - "
KEA Priviledges:", + "
KEA Privileges:", 0, "
KMID:", 0, @@ -500,12 +500,12 @@ CERT_HTMLCertInfo(CERTCertificate *cert, PRBool showImages, PRBool showIssuer) htmlcertstrings[18] = "
Clearance:"; htmlcertstrings[19] = sec_FortezzaClearance( &pubk->u.fortezza.clearance); - htmlcertstrings[20] = "
DSS Priviledges:"; - DSSPriv = sec_FortezzaCertPriviledge( + htmlcertstrings[20] = "
DSS Privileges:"; + DSSPriv = sec_FortezzaCertPrivilege( &pubk->u.fortezza.DSSpriviledge); htmlcertstrings[21] = DSSPriv; - htmlcertstrings[22] = "
KEA Priviledges:"; - htmlcertstrings[23] = sec_FortezzaMessagePriviledge( + htmlcertstrings[22] = "
KEA Privileges:"; + htmlcertstrings[23] = sec_FortezzaMessagePrivilege( &pubk->u.fortezza.KEApriviledge); htmlcertstrings[24] = "
KMID:"; dummyitem.data = &pubk->u.fortezza.KMID[0];