summaryrefslogtreecommitdiffstats
path: root/apps/lib
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-09-03 14:10:41 +0100
committerMatt Caswell <matt@openssl.org>2020-09-13 11:10:39 +0100
commit24c4ea958ecae0b194cc3eb812a81766cdb421f6 (patch)
tree29be67ecc7efed3b5ae25bb3d976281d1499437d /apps/lib
parente144fd36ceb4d71a75b04503995a52ad6699fb22 (diff)
Fix stacks of OPENSSL_STRING, OPENSSL_CSTRING and OPENSSL_BLOCK
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12781)
Diffstat (limited to 'apps/lib')
-rw-r--r--apps/lib/apps.c1
-rw-r--r--apps/lib/names.c2
-rw-r--r--apps/lib/s_cb.c2
3 files changed, 0 insertions, 5 deletions
diff --git a/apps/lib/apps.c b/apps/lib/apps.c
index d69ded2a5c..9bc976317d 100644
--- a/apps/lib/apps.c
+++ b/apps/lib/apps.c
@@ -63,7 +63,6 @@ static int WIN32_rename(const char *from, const char *to);
DEFINE_STACK_OF(CONF)
DEFINE_STACK_OF(CONF_VALUE)
-DEFINE_STACK_OF_STRING()
typedef struct {
const char *name;
diff --git a/apps/lib/names.c b/apps/lib/names.c
index 42b9e9065c..5e2e7e147c 100644
--- a/apps/lib/names.c
+++ b/apps/lib/names.c
@@ -12,8 +12,6 @@
#include <openssl/safestack.h>
#include "names.h"
-DEFINE_STACK_OF_CSTRING()
-
#ifdef _WIN32
# define strcasecmp _stricmp
#endif
diff --git a/apps/lib/s_cb.c b/apps/lib/s_cb.c
index b53d4cbd40..ec52cef158 100644
--- a/apps/lib/s_cb.c
+++ b/apps/lib/s_cb.c
@@ -26,8 +26,6 @@
#define COOKIE_SECRET_LENGTH 16
-DEFINE_STACK_OF_STRING()
-
VERIFY_CB_ARGS verify_args = { -1, 0, X509_V_OK, 0 };
#ifndef OPENSSL_NO_SOCK