SYNERGY-1057 Fix code smell
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user