diff options
author | Jack Lloyd <[email protected]> | 2017-10-09 16:18:09 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-10-09 16:18:33 -0400 |
commit | fb3076f04336418d2daa5d278f2895d0174dedb9 (patch) | |
tree | 142a1d26b1118d84c0789dcc1b7a55784f583feb /src/lib/utils | |
parent | 782d001b1d4f1594ce8954ee303f15b0b487acf8 (diff) |
getenv is in standard C++
Diffstat (limited to 'src/lib/utils')
-rw-r--r-- | src/lib/utils/os_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/os_utils.cpp b/src/lib/utils/os_utils.cpp index a8d23e214..833afecc6 100644 --- a/src/lib/utils/os_utils.cpp +++ b/src/lib/utils/os_utils.cpp @@ -211,7 +211,7 @@ size_t OS::get_memory_locking_limit() /* * Allow override via env variable */ - if(const char* env = ::getenv("BOTAN_MLOCK_POOL_SIZE")) + if(const char* env = std::getenv("BOTAN_MLOCK_POOL_SIZE")) { try { |