diff options
author | wchang0222%aol.com <devnull@localhost> | 2003-12-23 21:37:07 +0000 |
---|---|---|
committer | wchang0222%aol.com <devnull@localhost> | 2003-12-23 21:37:07 +0000 |
commit | aa42ee343a78a1aec1bb2e45f52dfaeb37fc15ff (patch) | |
tree | 173ef6731a6b6f7c62988edd71e7d1f3f581e7f8 /security/nss/lib/jar | |
parent | ec9f1af179718c8d9c038cb6d454c1b480b3c8a7 (diff) | |
download | nss-hg-aa42ee343a78a1aec1bb2e45f52dfaeb37fc15ff.tar.gz |
Fixed unused variable compiler warning about 'html'. Declare it inside
the same ifdef with which it is used.
Diffstat (limited to 'security/nss/lib/jar')
-rw-r--r-- | security/nss/lib/jar/jarver.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/security/nss/lib/jar/jarver.c b/security/nss/lib/jar/jarver.c index a6e13d9f5..4252a8d5f 100644 --- a/security/nss/lib/jar/jarver.c +++ b/security/nss/lib/jar/jarver.c @@ -1377,7 +1377,9 @@ static char *jar_choose_nickname (CERTCertificate *cert) char *JAR_cert_html (JAR *jar, int style, long keylen, void *key, int *result) { +#ifdef notdef char *html; +#endif CERTCertificate *cert; *result = -1; |