preprocessor: config file: remove redundant check

issue#70
Houtan Bastani 2013-05-30 15:21:08 +02:00
parent 0474406e3b
commit feb6147467
1 changed files with 1 additions and 1 deletions

View File

@ -517,7 +517,7 @@ ConfigFile::checkPass(WarningConsolidation &warnings) const
exit(EXIT_FAILURE);
}
#if defined(_WIN32) || defined(__CYGWIN32__)
if (it->second->userName.empty() || it->second->password.empty())
if (it->second->password.empty())
{
cerr << "ERROR (node " << it->first << "): the Password option must be passed under Windows for every remote node." << endl;
exit(EXIT_FAILURE);