summaryrefslogtreecommitdiffstats
path: root/crypto/openssl/crypto/conf/cnf_save.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/crypto/conf/cnf_save.c')
-rw-r--r--crypto/openssl/crypto/conf/cnf_save.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/crypto/openssl/crypto/conf/cnf_save.c b/crypto/openssl/crypto/conf/cnf_save.c
index e907cc2..1439487 100644
--- a/crypto/openssl/crypto/conf/cnf_save.c
+++ b/crypto/openssl/crypto/conf/cnf_save.c
@@ -59,7 +59,8 @@
#include <stdio.h>
#include <openssl/conf.h>
-void print_conf(CONF_VALUE *cv);
+static void print_conf(CONF_VALUE *cv);
+static IMPLEMENT_LHASH_DOALL_FN(print_conf, CONF_VALUE *);
main()
{
@@ -73,11 +74,11 @@ main()
exit(1);
}
- lh_doall(conf,print_conf);
+ lh_doall(conf,LHASH_DOALL_FN(print_conf));
}
-void print_conf(CONF_VALUE *cv)
+static void print_conf(CONF_VALUE *cv)
{
int i;
CONF_VALUE *v;
OpenPOWER on IntegriCloud