summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%google.com <devnull@localhost>2013-01-23 22:08:32 +0000
committerwtc%google.com <devnull@localhost>2013-01-23 22:08:32 +0000
commit5a153a4c7b000ec4e8da6e0f531b0b0f440c3a32 (patch)
treebf721493decebf5344ec9600ebb60809b9643c36
parent795b761c52db66248acf25c8be08270e1f7f021c (diff)
downloadnss-hg-5a153a4c7b000ec4e8da6e0f531b0b0f440c3a32.tar.gz
Bug 833857: Revert the change to ocspResponse_other in rev. 1.9 because
some code in ocspclnt.c (the responseStatusNames array and an assertion) depends on the value of ocspResponse_other. r=kaie.
-rw-r--r--security/nss/lib/certhigh/ocspti.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/nss/lib/certhigh/ocspti.h b/security/nss/lib/certhigh/ocspti.h
index 2d7a96709..0d3b75a41 100644
--- a/security/nss/lib/certhigh/ocspti.h
+++ b/security/nss/lib/certhigh/ocspti.h
@@ -189,14 +189,14 @@ struct CERTOCSPCertIDStr {
* }
*/
typedef enum {
- ocspResponse_other = -1, /* unknown/unrecognized value */
ocspResponse_successful = 0,
ocspResponse_malformedRequest = 1,
ocspResponse_internalError = 2,
ocspResponse_tryLater = 3,
ocspResponse_unused = 4,
ocspResponse_sigRequired = 5,
- ocspResponse_unauthorized = 6
+ ocspResponse_unauthorized = 6,
+ ocspResponse_other /* unknown/unrecognized value */
} ocspResponseStatus;
/*