diff options
author | lteo <> | 2015-09-12 19:34:07 +0000 |
---|---|---|
committer | lteo <> | 2015-09-12 19:34:07 +0000 |
commit | 8c6d0b14d21df96627f6b3ff8430f8b0e3921ea1 (patch) | |
tree | 4ddf54d828aab78409ab1158c950cbbedb1d9d2e /src/usr.bin/openssl/openssl.c | |
parent | 9480ccd0f85763578f4bb5f1b4b39e98da340d0f (diff) | |
download | openbsd-8c6d0b14d21df96627f6b3ff8430f8b0e3921ea1.tar.gz openbsd-8c6d0b14d21df96627f6b3ff8430f8b0e3921ea1.tar.bz2 openbsd-8c6d0b14d21df96627f6b3ff8430f8b0e3921ea1.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) { |