aboutsummaryrefslogtreecommitdiffstats
path: root/apps/ca.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2000-12-03 10:04:22 +0000
committerBen Laurie <ben@openssl.org>2000-12-03 10:04:22 +0000
commitb0dc680f71db4f79c01b41975f869f7346542098 (patch)
tree654bb9db77076011944459bea2f2aa3768fe4ead /apps/ca.c
parentaddb309ad64d1685cd246f65562c5702710c9853 (diff)
downloadopenssl-b0dc680f71db4f79c01b41975f869f7346542098.tar.gz
Fix warnings.
Diffstat (limited to 'apps/ca.c')
-rw-r--r--apps/ca.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 2e8593468a..3f855a1565 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -215,10 +215,10 @@ static char *section=NULL;
static int preserve=0;
static int msie_hack=0;
-static IMPLEMENT_LHASH_HASH_FN(index_serial_hash,const char **);
-static IMPLEMENT_LHASH_COMP_FN(index_serial_cmp,const char **);
-static IMPLEMENT_LHASH_HASH_FN(index_name_hash,const char **);
-static IMPLEMENT_LHASH_COMP_FN(index_name_cmp,const char **);
+static IMPLEMENT_LHASH_HASH_FN(index_serial_hash,const char **)
+static IMPLEMENT_LHASH_COMP_FN(index_serial_cmp,const char **)
+static IMPLEMENT_LHASH_HASH_FN(index_name_hash,const char **)
+static IMPLEMENT_LHASH_COMP_FN(index_name_cmp,const char **)
int MAIN(int, char **);