SYNERGY-1057 Fix code smell

This commit is contained in:
Serhii Hadzhilov
2021-08-27 15:49:06 +03:00
parent 9340f1ffaf
commit e52d7cc26a

View File

@ -712,11 +712,9 @@ SecureSocket::verifyCertFingerprint()
if (file.is_open()) {
while (!file.eof()) {
getline(file,fileLine);
if (!fileLine.empty()) {
if (fileLine.compare(fingerprint) == 0) {
isValid = true;
break;
}
if (!fileLine.empty() && !fileLine.compare(fingerprint)) {
isValid = true;
break;
}
}
}