summaryrefslogtreecommitdiffstats
path: root/crypto/include
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-07-08 18:27:56 +0200
committerRichard Levitte <levitte@openssl.org>2016-07-10 06:40:47 +0200
commita90f8d7641d89bf36203784527b298c117e41335 (patch)
treef8927bf98aa3bd7e1dd4a3dbb7c31a9319442310 /crypto/include
parent7304e329bc3a91479ab77704a30d43fcc1376ea0 (diff)
VMS: Simplify the spec of the default certs & keys area.
We previously had a number of logical names for the different parts. There's really no need for that, the default directories are in one directory tree. So we only define OSSL$DATAROOT: and make everything related to that one. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/include')
-rw-r--r--crypto/include/internal/cryptlib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/include/internal/cryptlib.h b/crypto/include/internal/cryptlib.h
index 5270ee942a..91267b78fc 100644
--- a/crypto/include/internal/cryptlib.h
+++ b/crypto/include/internal/cryptlib.h
@@ -47,10 +47,10 @@ DEFINE_LHASH_OF(MEM);
# define CTLOG_FILE OPENSSLDIR "/ct_log_list.cnf"
# else
# define X509_CERT_AREA "OSSL$DATAROOT:[000000]"
-# define X509_CERT_DIR "OSSL$CERTS:"
-# define X509_CERT_FILE "OSSL$DATAROOT:cert.pem"
-# define X509_PRIVATE_DIR "OSSL$PRIVATE:"
-# define CTLOG_FILE "OSSL$DATAROOT:ct_log_list.cnf"
+# define X509_CERT_DIR "OSSL$DATAROOT:[CERTS]"
+# define X509_CERT_FILE "OSSL$DATAROOT:[000000]cert.pem"
+# define X509_PRIVATE_DIR "OSSL$DATAROOT:[PRIVATE]"
+# define CTLOG_FILE "OSSL$DATAROOT:[000000]ct_log_list.cnf"
# endif
# define X509_CERT_DIR_EVP "SSL_CERT_DIR"