commit | cf3a667634ef93c47c0ef3056a01c47112e49427 | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sun Feb 01 20:33:22 2015 -0800 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sun Feb 01 20:33:22 2015 -0800 |
tree | a83946b4f824f84162a40758dbf4dcd9318b8e50 | |
parent | 2586be40cbcb1b3dce87bee72ef2c6c796cebeb3 [diff] [blame] |
build: Fix conditional compilation on availability of getpass() Change-Id: I3aa95c1b6afe2239f24642507da8090f7f58abac Refs: #2419
diff --git a/tools/ndnsec/util.hpp b/tools/ndnsec/util.hpp index 2de9ff1..eaf2825 100644 --- a/tools/ndnsec/util.hpp +++ b/tools/ndnsec/util.hpp
@@ -46,7 +46,7 @@ bool getPassword(std::string& password, const std::string& prompt) { -#ifndef NDN_CXX_HAVE_GETPASS +#ifdef NDN_CXX_HAVE_GETPASS bool isReady = false; char* pw0 = 0;