aboutsummaryrefslogtreecommitdiffstats
path: root/include/openssl/conf.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-12-28 00:04:33 +0000
committerDr. Stephen Henson <steve@openssl.org>2016-01-07 18:00:51 +0000
commit858857157290dd35145b14044ae96be9cd8eb0df (patch)
tree1f5775a622b6d68a9e930c4038b5366c26388484 /include/openssl/conf.h
parentc5e0c5404708939a3bed317366367d9898960598 (diff)
downloadopenssl-858857157290dd35145b14044ae96be9cd8eb0df.tar.gz
Rename DECLARE*STACK_OF to DEFINE*STACK_OF
Applications wishing to include their own stacks now just need to include DEFINE_STACK_OF(foo) in a header file. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'include/openssl/conf.h')
-rw-r--r--include/openssl/conf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/openssl/conf.h b/include/openssl/conf.h
index c1114647dc..118307270f 100644
--- a/include/openssl/conf.h
+++ b/include/openssl/conf.h
@@ -77,7 +77,7 @@ typedef struct {
char *value;
} CONF_VALUE;
-DECLARE_STACK_OF(CONF_VALUE)
+DEFINE_STACK_OF(CONF_VALUE)
DECLARE_LHASH_OF(CONF_VALUE);
struct conf_st;
@@ -102,8 +102,8 @@ struct conf_method_st {
typedef struct conf_imodule_st CONF_IMODULE;
typedef struct conf_module_st CONF_MODULE;
-DECLARE_STACK_OF(CONF_MODULE)
-DECLARE_STACK_OF(CONF_IMODULE)
+DEFINE_STACK_OF(CONF_MODULE)
+DEFINE_STACK_OF(CONF_IMODULE)
/* DSO module function typedefs */
typedef int conf_init_func (CONF_IMODULE *md, const CONF *cnf);