openssh: update to openssh-7.2p1

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2016-03-05 12:03:33 +01:00
parent a81e0c9742
commit a805621039
2 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@
################################################################################ ################################################################################
PKG_NAME="openssh" PKG_NAME="openssh"
PKG_VERSION="7.1p2" PKG_VERSION="7.2p1"
PKG_REV="1" PKG_REV="1"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="OSS" PKG_LICENSE="OSS"

View File

@ -5,10 +5,10 @@ index d6af0b9..22c0aa6 100644
@@ -1320,8 +1320,7 @@ load_identity_file(char *filename, int userprovided) @@ -1320,8 +1320,7 @@ load_identity_file(char *filename, int userprovided)
struct stat st; struct stat st;
if (stat(filename, &st) < 0) { if (stat(id->filename, &st) < 0) {
- (userprovided ? logit : debug3)("no such identity: %s: %s", - (id->userprovided ? logit : debug3)("no such identity: %s: %s",
- filename, strerror(errno)); - id->filename, strerror(errno));
+ debug3("no such identity: %s", filename); + debug3("no such identity: %s", id->filename);
return NULL; return NULL;
} }
private = key_load_private_type(KEY_UNSPEC, filename, "", NULL, &perm_ok); private = key_load_private_type(KEY_UNSPEC, filename, "", NULL, &perm_ok);