Import of old SSLeay release: SSLeay 0.9.0b
[openssl.git] / crypto / x509 / x509_d2.c
index 235d70f8d73ee68cf48d3f3c5c833ef88a083ffe..01e22f4cb424e8ed4f5c5349704dba6ed7c5f9b5 100644 (file)
@@ -1,5 +1,5 @@
 /* crypto/x509/x509_d2.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
@@ -63,6 +63,7 @@
 #include "crypto.h"
 #include "x509.h"
 
+#ifndef NO_STDIO
 int X509_STORE_set_default_paths(ctx)
 X509_STORE *ctx;
        {
@@ -101,6 +102,9 @@ char *path;
                if (lookup == NULL) return(0);
                X509_LOOKUP_add_dir(lookup,path,X509_FILETYPE_PEM);
                }
+       if ((path == NULL) && (file == NULL))
+               return(0);
        return(1);
        }
 
+#endif