diff options
author | lteo <> | 2015-09-12 19:34:07 +0000 |
---|---|---|
committer | lteo <> | 2015-09-12 19:34:07 +0000 |
commit | 4ba4f1781a267e49f79cabb109294a61d12f84a0 (patch) | |
tree | 4ddf54d828aab78409ab1158c950cbbedb1d9d2e /src/usr.bin/openssl/openssl.c | |
parent | 5b7d466b6eec87df20f4bdebf660cec3c5c7a9a8 (diff) | |
download | openbsd-4ba4f1781a267e49f79cabb109294a61d12f84a0.tar.gz openbsd-4ba4f1781a267e49f79cabb109294a61d12f84a0.tar.bz2 openbsd-4ba4f1781a267e49f79cabb109294a61d12f84a0.zip |
Nuke SSLEAY_CONF -- a backwards compatibility environment variable that
has been superseded by OPENSSL_CONF and discouraged from use for almost
16 years.
"Definately ok" jsing@
"burn it" deraadt@
"Kill it with fire" miod@
"KILL IT WITH FIRE!!! BURN!!!!" beck@
Diffstat (limited to 'src/usr.bin/openssl/openssl.c')
-rw-r--r-- | src/usr.bin/openssl/openssl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/usr.bin/openssl/openssl.c b/src/usr.bin/openssl/openssl.c index 0361d1cbb4..653329f7c6 100644 --- a/src/usr.bin/openssl/openssl.c +++ b/src/usr.bin/openssl/openssl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: openssl.c,v 1.8 2015/09/11 20:55:59 jsing Exp $ */ | 1 | /* $OpenBSD: openssl.c,v 1.9 2015/09/12 19:34:07 lteo Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -455,8 +455,6 @@ main(int argc, char **argv) | |||
455 | 455 | ||
456 | /* Lets load up our environment a little */ | 456 | /* Lets load up our environment a little */ |
457 | p = getenv("OPENSSL_CONF"); | 457 | p = getenv("OPENSSL_CONF"); |
458 | if (p == NULL) | ||
459 | p = getenv("SSLEAY_CONF"); | ||
460 | if (p == NULL) { | 458 | if (p == NULL) { |
461 | p = to_free = make_config_name(); | 459 | p = to_free = make_config_name(); |
462 | if (p == NULL) { | 460 | if (p == NULL) { |