summaryrefslogtreecommitdiffstats
path: root/crypto/ocsp/ocsp_ht.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2007-10-13 15:51:32 +0000
committerAndy Polyakov <appro@openssl.org>2007-10-13 15:51:32 +0000
commitebc06fba67a84f4fb397863f6e5eb4212c25d4e5 (patch)
tree8688a563283d23f3cf82d718366ae4c1d5d17c8d /crypto/ocsp/ocsp_ht.c
parente979c039f937f746a06948aa3749c200c5a5cadd (diff)
Bunch of constifications.
Diffstat (limited to 'crypto/ocsp/ocsp_ht.c')
-rw-r--r--crypto/ocsp/ocsp_ht.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ocsp/ocsp_ht.c b/crypto/ocsp/ocsp_ht.c
index a8e569b74a..5059cf652e 100644
--- a/crypto/ocsp/ocsp_ht.c
+++ b/crypto/ocsp/ocsp_ht.c
@@ -120,7 +120,7 @@ void OCSP_REQ_CTX_free(OCSP_REQ_CTX *rctx)
OCSP_REQ_CTX *OCSP_sendreq_new(BIO *io, char *path, OCSP_REQUEST *req,
int maxline)
{
- static char post_hdr[] = "POST %s HTTP/1.0\r\n"
+ static const char post_hdr[] = "POST %s HTTP/1.0\r\n"
"Content-Type: application/ocsp-request\r\n"
"Content-Length: %d\r\n\r\n";