aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/txt_db/txt_db.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/txt_db/txt_db.h')
-rw-r--r--crypto/txt_db/txt_db.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/txt_db/txt_db.h b/crypto/txt_db/txt_db.h
index 3ef94d512b..4076493e45 100644
--- a/crypto/txt_db/txt_db.h
+++ b/crypto/txt_db/txt_db.h
@@ -77,10 +77,13 @@
extern "C" {
#endif
+typedef STRING *PSTRING;
+DECLARE_SPECIAL_STACK_OF(PSTRING, STRING)
+
typedef struct txt_db_st
{
int num_fields;
- STACK /* char ** */ *data;
+ STACK_OF(PSTRING) *data;
LHASH_OF(STRING) **index;
int (**qual)(STRING *);
long error;