diff options
author | Robert Hensing <robert@roberthensing.nl> | 2023-02-03 18:07:47 +0100 |
---|---|---|
committer | Robert Hensing <robert@roberthensing.nl> | 2023-04-07 17:50:40 +0200 |
commit | 2445afd92c99ec0901a0e1a00fadda12aad15220 (patch) | |
tree | fbeaf01bef6fc71cbfdeacc3d4e0185d9f21c86b /src/libutil/util.cc | |
parent | 2196fd1146aa077419a113059ced924a648f9766 (diff) |
Require openssl >= 1.1.1
Versions older this are sufficiently old that we don't want to support
them, and they require extra support code.
Diffstat (limited to 'src/libutil/util.cc')
-rw-r--r-- | src/libutil/util.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc index 5c19dc737..21d1c8dcd 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -48,7 +48,6 @@ extern char * * environ __attribute__((weak)); namespace nix { void initLibUtil() { - initOpenSSL(); } std::optional<std::string> getEnv(const std::string & key) |