Sort openssl.ec, the configuration file for mkerr.pl.
[openssl.git] / crypto / conf / cnf_save.c
index c9018de10ec76468faebfbd9acc2516225902b3d..1439487526b7b822c14d54117b7ae46fc7b72366 100644 (file)
  */
 
 #include <stdio.h>
-#include "conf.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()
        {
        LHASH *conf;
        long l;
 
-       conf=CONF_load(NULL,"../../apps/ssleay.cnf",&l);
+       conf=CONF_load(NULL,"../../apps/openssl.cnf",&l);
        if (conf == NULL)
                {
                fprintf(stderr,"error loading config, line %ld\n",l);
                exit(1);
                }
 
-       lh_doall(conf,print_conf);
+       lh_doall(conf,LHASH_DOALL_FN(print_conf));
        }
 
 
-void print_conf(cv)
-CONF_VALUE *cv;
+static void print_conf(CONF_VALUE *cv)
        {
        int i;
        CONF_VALUE *v;