[openssl-commits] [openssl] master update

Rich Salz rsalz at openssl.org
Mon Aug 10 16:00:35 UTC 2015


The branch master has been updated
       via  82c494276df9f594064688c920c4431c85759121 (commit)
      from  4b9cb35d85c32a8ebc973355bdb4833e719af108 (commit)


- Log -----------------------------------------------------------------
commit 82c494276df9f594064688c920c4431c85759121
Author: Rich Salz <rsalz at akamai.com>
Date:   Mon Aug 10 11:37:48 2015 -0400

    Fix build break.
    
    Reviewed-by: Viktor Dukhovni <viktor at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 apps/apps.h | 2 +-
 apps/ocsp.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/apps/apps.h b/apps/apps.h
index f2dc812..99c5809 100644
--- a/apps/apps.h
+++ b/apps/apps.h
@@ -450,7 +450,7 @@ ENGINE *setup_engine(const char *engine, int debug);
 OCSP_RESPONSE *process_responder(OCSP_REQUEST *req,
                                  const char *host, const char *path,
                                  const char *port, int use_ssl,
-                                 const STACK_OF(CONF_VALUE) *headers,
+                                 STACK_OF(CONF_VALUE) *headers,
                                  int req_timeout);
 # endif
 
diff --git a/apps/ocsp.c b/apps/ocsp.c
index 5b3092a..7193dae 100644
--- a/apps/ocsp.c
+++ b/apps/ocsp.c
@@ -1256,7 +1256,7 @@ static OCSP_RESPONSE *query_responder(BIO *cbio, const char *path,
 OCSP_RESPONSE *process_responder(OCSP_REQUEST *req,
                                  const char *host, const char *path,
                                  const char *port, int use_ssl,
-                                 const STACK_OF(CONF_VALUE) *headers,
+                                 STACK_OF(CONF_VALUE) *headers,
                                  int req_timeout)
 {
     BIO *cbio = NULL;


More information about the openssl-commits mailing list