Change #include filenames from <foo.h> to <openssl.h>.
[openssl.git] / crypto / conf / cnf_save.c
index 8524802e18671eb8e9c478d95ef4ede210fad059..e907cc224276e4304d23305ab967c9856b649051 100644 (file)
@@ -1,5 +1,5 @@
 /* crypto/conf/cnf_save.c */
-/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
+/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
  * This package is an SSL implementation written
@@ -57,7 +57,7 @@
  */
 
 #include <stdio.h>
-#include "conf.h"
+#include <openssl/conf.h>
 
 void print_conf(CONF_VALUE *cv);
 
@@ -66,7 +66,7 @@ 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);
@@ -77,8 +77,7 @@ main()
        }
 
 
-void print_conf(cv)
-CONF_VALUE *cv;
+void print_conf(CONF_VALUE *cv)
        {
        int i;
        CONF_VALUE *v;