aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-10-09 16:18:09 -0400
committerJack Lloyd <[email protected]>2017-10-09 16:18:33 -0400
commitfb3076f04336418d2daa5d278f2895d0174dedb9 (patch)
tree142a1d26b1118d84c0789dcc1b7a55784f583feb
parent782d001b1d4f1594ce8954ee303f15b0b487acf8 (diff)
getenv is in standard C++
-rw-r--r--src/lib/utils/os_utils.cpp2
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
{