diff --git a/packages/network/openssh/package.mk b/packages/network/openssh/package.mk index 66d6609134..e847aff4d6 100644 --- a/packages/network/openssh/package.mk +++ b/packages/network/openssh/package.mk @@ -17,7 +17,7 @@ ################################################################################ PKG_NAME="openssh" -PKG_VERSION="7.1p2" +PKG_VERSION="7.2p1" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="OSS" diff --git a/packages/network/openssh/patches/openssh-silence-missing-identity-error.patch b/packages/network/openssh/patches/openssh-silence-missing-identity-error.patch index 355fc1e9b5..25749b6fa2 100644 --- a/packages/network/openssh/patches/openssh-silence-missing-identity-error.patch +++ b/packages/network/openssh/patches/openssh-silence-missing-identity-error.patch @@ -5,10 +5,10 @@ index d6af0b9..22c0aa6 100644 @@ -1320,8 +1320,7 @@ load_identity_file(char *filename, int userprovided) struct stat st; - if (stat(filename, &st) < 0) { -- (userprovided ? logit : debug3)("no such identity: %s: %s", -- filename, strerror(errno)); -+ debug3("no such identity: %s", filename); + if (stat(id->filename, &st) < 0) { +- (id->userprovided ? logit : debug3)("no such identity: %s: %s", +- id->filename, strerror(errno)); ++ debug3("no such identity: %s", id->filename); return NULL; } private = key_load_private_type(KEY_UNSPEC, filename, "", NULL, &perm_ok);