aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/Lib
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2021-01-21 10:25:02 +0100
committerGitHub <noreply@github.com>2021-01-21 10:25:02 +0100
commit10214fbee03496199e80b0411fcab78cc42362f6 (patch)
treede7ab98e64dbaa6d1f26a9f4516b2ad88bc69de1 /apps/files_external/lib/Lib
parentd4d33e3095fb5d0797ec7c3bb8c93c2d1c905ade (diff)
parentfcbbcacab4dc0178c7fdf1a61cfb81f922c60209 (diff)
downloadnextcloud-server-10214fbee03496199e80b0411fcab78cc42362f6.tar.gz
nextcloud-server-10214fbee03496199e80b0411fcab78cc42362f6.zip
Merge pull request #25214 from nextcloud/dependabot/composer/phpseclib/phpseclib-2.0.30
Bump phpseclib/phpseclib from 2.0.25 to 2.0.30
Diffstat (limited to 'apps/files_external/lib/Lib')
-rw-r--r--apps/files_external/lib/Lib/Storage/SFTP.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/lib/Lib/Storage/SFTP.php b/apps/files_external/lib/Lib/Storage/SFTP.php
index ec788c3bad7..5f3d02dfd0a 100644
--- a/apps/files_external/lib/Lib/Storage/SFTP.php
+++ b/apps/files_external/lib/Lib/Storage/SFTP.php
@@ -141,6 +141,7 @@ class SFTP extends \OC\Files\Storage\Common {
$login = false;
foreach ($this->auth as $auth) {
+ /** @psalm-suppress TooManyArguments */
$login = $this->client->login($this->user, $auth);
if ($login === true) {
break;