summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjavi%netscape.com <devnull@localhost>2002-07-03 00:13:25 +0000
committerjavi%netscape.com <devnull@localhost>2002-07-03 00:13:25 +0000
commit794821625ae514e296bd2ac0365c16f245cc5a1b (patch)
tree3b1c1962cf7435671f9ff7fb0bafe711966c9ccd
parent52dfa7dea914cec70e52bac2ffe430067f4ff6cf (diff)
downloadnss-hg-794821625ae514e296bd2ac0365c16f245cc5a1b.tar.gz
Use the newly exported symbol names.
-rw-r--r--security/nss/cmd/ocspclnt/ocspclnt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/nss/cmd/ocspclnt/ocspclnt.c b/security/nss/cmd/ocspclnt/ocspclnt.c
index a5a1448c6..a9d85c479 100644
--- a/security/nss/cmd/ocspclnt/ocspclnt.c
+++ b/security/nss/cmd/ocspclnt/ocspclnt.c
@@ -831,11 +831,11 @@ print_response (FILE *out_file, SECItem *data, CERTCertDBHandle *handle)
if (response == NULL)
return SECFailure;
- PORT_Assert (response->statusValue <= ocspResponse_other);
+ PORT_Assert (response->statusValue <= OCSPResponse_other);
fprintf (out_file, "Response Status: %s\n",
responseStatusNames[response->statusValue]);
- if (response->statusValue == ocspResponse_successful) {
+ if (response->statusValue == OCSPResponse_successful) {
ocspResponseBytes *responseBytes = response->responseBytes;
SECStatus sigStatus;
CERTCertificate *signerCert = NULL;