fixing style to be consistent per @p12tic

This commit is contained in:
Dayne Broderson 2018-12-23 14:14:00 -09:00 committed by Adrian Lucrèce Céleste
parent d4a2a055cc
commit 1b99390c96
1 changed files with 3 additions and 3 deletions

View File

@ -712,10 +712,10 @@ SecureSocket::verifyCertFingerprint()
std::ifstream file;
file.open(trustedServersFilename.c_str());
if ( ! file.is_open() ) {
LOG((CLOG_NOTE "Unable to open trustedServersFile: %s", trustedServersFilename.c_str() ));
if (!file.is_open()) {
LOG((CLOG_NOTE "Unable to open trustedServersFile: %s", trustedServersFilename.c_str() ));
} else {
LOG((CLOG_NOTE "Opened trustedServersFilename: %s", trustedServersFilename.c_str() ));
LOG((CLOG_NOTE "Opened trustedServersFilename: %s", trustedServersFilename.c_str() ));
}
bool isValid = false;