summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjulien.pierre.bugs%sun.com <devnull@localhost>2005-04-02 05:33:41 +0000
committerjulien.pierre.bugs%sun.com <devnull@localhost>2005-04-02 05:33:41 +0000
commit23e54904d3cd3d9fa3b2867b26dfb661b74e94ec (patch)
tree6145563f75783dc805397fd7327a082219d064b4
parent1734c5c1b40343f02321e8379422e2bc391de81f (diff)
downloadnss-hg-23e54904d3cd3d9fa3b2867b26dfb661b74e94ec.tar.gz
Silence compiler warnings
-rw-r--r--security/nss/lib/util/quickder.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/security/nss/lib/util/quickder.c b/security/nss/lib/util/quickder.c
index 340aff7f1..33b251272 100644
--- a/security/nss/lib/util/quickder.c
+++ b/security/nss/lib/util/quickder.c
@@ -254,6 +254,8 @@ static SECStatus MatchComponentType(const SEC_ASN1Template* templateEntry,
/* this is only to help debugging of the decoder in case of problems */
unsigned char tagclass = tag & SEC_ASN1_CLASS_MASK;
unsigned char expectedclass = (unsigned char)kind & SEC_ASN1_CLASS_MASK;
+ tagclass = tagclass;
+ expectedclass = expectedclass;
#endif
*match = PR_FALSE;
return SECSuccess;