Stop warning about extra ';' outside of function.
[openssl.git] / crypto / conf / test.c
index 9df6715d550e1b0de7b69f1b075711da94158c80..7fab85053e4cb94abd929cf243443c2802055b61 100644 (file)
@@ -58,8 +58,8 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "conf.h"
-#include "err.h"
+#include <openssl/conf.h>
+#include <openssl/err.h>
 
 main()
        {
@@ -67,7 +67,10 @@ main()
        long eline;
        char *s,*s2;
 
-       conf=CONF_load(NULL,"openssl.conf",&eline);
+#ifdef USE_WIN32
+       CONF_set_default_method(CONF_WIN32);
+#endif
+       conf=CONF_load(NULL,"ssleay.cnf",&eline);
        if (conf == NULL)
                {
                ERR_load_crypto_strings();
@@ -88,5 +91,8 @@ main()
        s=CONF_get_string(conf,"s_client","cipher1");
        printf("s_client:cipher1=%s\n",(s == NULL)?"NULL":s);
 
+       printf("---------------------------- DUMP ------------------------\n");
+       CONF_dump_fp(conf, stdout);
+
        exit(0);
        }