We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75d613e commit 30cb595Copy full SHA for 30cb595
src/PhpseclibV3/SftpConnectionProvider.php
@@ -126,7 +126,7 @@ private function checkFingerprint(SFTP $connection): void
126
: [$this->hostFingerprint];
127
128
foreach ($expectedFingerprints as $expectedFingerprint) {
129
- if (0 !== strcasecmp($expectedFingerprint, $fingerprint)) {
+ if (0 === strcasecmp($expectedFingerprint, $fingerprint)) {
130
return;
131
}
132
0 commit comments