Use new-style system-id macros everywhere possible. I hope I haven't
[openssl.git] / crypto / conf / test.c
index 899ee2a067e515ad94e8edd06cec6dea82e9f25f..7fab85053e4cb94abd929cf243443c2802055b61 100644 (file)
@@ -58,7 +58,8 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "conf.h"
+#include <openssl/conf.h>
+#include <openssl/err.h>
 
 main()
        {
@@ -66,7 +67,10 @@ main()
        long eline;
        char *s,*s2;
 
-       conf=CONF_load(NULL,"ssleay.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();
@@ -87,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);
        }