aboutsummaryrefslogtreecommitdiffstats
path: root/include/openssl/srp.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/srp.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/srp.h')
-rw-r--r--include/openssl/srp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/openssl/srp.h b/include/openssl/srp.h
index 3411fe571e..b7f4519fd3 100644
--- a/include/openssl/srp.h
+++ b/include/openssl/srp.h
@@ -83,7 +83,7 @@ typedef struct SRP_gN_cache_st {
} SRP_gN_cache;
-DECLARE_STACK_OF(SRP_gN_cache)
+DEFINE_STACK_OF(SRP_gN_cache)
typedef struct SRP_user_pwd_st {
char *id;
@@ -94,7 +94,7 @@ typedef struct SRP_user_pwd_st {
char *info;
} SRP_user_pwd;
-DECLARE_STACK_OF(SRP_user_pwd)
+DEFINE_STACK_OF(SRP_user_pwd)
typedef struct SRP_VBASE_st {
STACK_OF(SRP_user_pwd) *users_pwd;
@@ -114,7 +114,7 @@ typedef struct SRP_gN_st {
BIGNUM *N;
} SRP_gN;
-DECLARE_STACK_OF(SRP_gN)
+DEFINE_STACK_OF(SRP_gN)
SRP_VBASE *SRP_VBASE_new(char *seed_key);
void SRP_VBASE_free(SRP_VBASE *vb);