Fix typo in OCSP ASN1 module, this caused
[openssl.git] / crypto / ocsp / ocsp_ht.c
index 58774b3f4667ccebd25c1b475973d388b7e3fd73..a0fd825dbf3c9406479aedda87b236d0d3e6d1e0 100644 (file)
@@ -80,8 +80,8 @@ OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, char *path, OCSP_REQUEST *req)
        int len, retcode;
        static char req_txt[] =
 "POST %s HTTP/1.0\r\n\
-Content-Type:application/ocsp-request\r\n\
-Content-length: %d\r\n\r\n";
+Content-Type: application/ocsp-request\r\n\
+Content-Length: %d\r\n\r\n";
 
        len = i2d_OCSP_REQUEST(req, NULL);
        if(BIO_printf(b, req_txt, path, len) < 0) {