diff options
author | Lawrence Teo <lteo@cvs.openbsd.org> | 2015-09-12 19:34:08 +0000 |
---|---|---|
committer | Lawrence Teo <lteo@cvs.openbsd.org> | 2015-09-12 19:34:08 +0000 |
commit | 674a4c86cd5ecb626c52c623bc636b5423eed4e0 (patch) | |
tree | bf9dbab3ceb08ff5c7778119474cd64d8eb487b1 /usr.bin/openssl/openssl.c | |
parent | 03a76a3f281b7afa20026d7900942fe09bf75321 (diff) |
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 'usr.bin/openssl/openssl.c')
-rw-r--r-- | usr.bin/openssl/openssl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/openssl/openssl.c b/usr.bin/openssl/openssl.c index 0361d1cbb42..653329f7c6c 100644 --- a/usr.bin/openssl/openssl.c +++ b/usr.bin/openssl/openssl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: openssl.c,v 1.8 2015/09/11 20:55:59 jsing Exp $ */ +/* $OpenBSD: openssl.c,v 1.9 2015/09/12 19:34:07 lteo Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -455,8 +455,6 @@ main(int argc, char **argv) /* Lets load up our environment a little */ p = getenv("OPENSSL_CONF"); - if (p == NULL) - p = getenv("SSLEAY_CONF"); if (p == NULL) { p = to_free = make_config_name(); if (p == NULL) { |