diff options
author | wchang0222%aol.com <devnull@localhost> | 2003-11-19 01:38:26 +0000 |
---|---|---|
committer | wchang0222%aol.com <devnull@localhost> | 2003-11-19 01:38:26 +0000 |
commit | 9b912525c17afd2ad7e9122dc3833a6e6c8e959b (patch) | |
tree | 1571301750471df828ec13a2d14f133986c754f6 /security/nss | |
parent | ada5228a86e3d6a48769283f05c2ca0d62257bd6 (diff) | |
download | nss-hg-9b912525c17afd2ad7e9122dc3833a6e6c8e959b.tar.gz |
Bugzilla bug 222568: fixed a bug introduced in rev. 1.54.
Diffstat (limited to 'security/nss')
-rw-r--r-- | security/nss/cmd/lib/secutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/cmd/lib/secutil.c b/security/nss/cmd/lib/secutil.c index 76d271725..b01b6dada 100644 --- a/security/nss/cmd/lib/secutil.c +++ b/security/nss/cmd/lib/secutil.c @@ -1024,7 +1024,7 @@ SECU_PrintSet(FILE *out, SECItem *t, char *m, int level) if (type == SEC_ASN1_SET) label = "Set "; - else if (type = SEC_ASN1_SEQUENCE) + else if (type == SEC_ASN1_SEQUENCE) label = "Sequence "; else label = ""; |