]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge of r1863635 from trunk:
authorStefan Eissing <icing@apache.org>
Fri, 2 Aug 2019 09:13:37 +0000 (09:13 +0000)
committerStefan Eissing <icing@apache.org>
Fri, 2 Aug 2019 09:13:37 +0000 (09:13 +0000)
  *) md_crypt: Wrap get_ct_scts_nid(void) definition to avoid unused function error
     when building in maintainer mode. [jim]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1864209 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/md/md_crypt.c

diff --git a/STATUS b/STATUS
index e178a0b8a5d508e75dfcb6370a5f77a6c565bb7b..06f55f15b22e1684e15ee3f77ff1e1e14d36406a 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -127,13 +127,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-  *) md_crypt: Wrap get_ct_scts_nid(void) definition to avoid unused function error
-     when building in maintainer mode.
-     trunk: 
-        http://svn.apache.org/1863635
-     2.4.x patch: svn merge -c 1863635 ^/httpd/httpd/trunk .
-     +1: jim, icing, rpluem
-
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
index acb62d345683a58c52f0adae518c2c908a91bf6e..c9f73614cd5d3bef60cebdbb8d41c9a278dec81b 100644 (file)
@@ -1485,6 +1485,7 @@ out:
 #define MD_OID_CT_SCTS_SNAME        "CT-SCTs"
 #define MD_OID_CT_SCTS_LNAME        "CT Certificate SCTs" 
 
+#ifndef OPENSSL_NO_CT
 static int get_ct_scts_nid(void)
 {
     int nid = OBJ_txt2nid(MD_OID_CT_SCTS_NUM);
@@ -1494,6 +1495,7 @@ static int get_ct_scts_nid(void)
     }
     return nid;
 }
+#endif
 
 const char *md_nid_get_sname(int nid)
 {