From: Darren Tucker Date: Sat, 24 Aug 2019 05:12:11 +0000 (+1000) Subject: Fix pasto in fallback code. X-Git-Tag: V_8_1_P1~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0e51810f332fe44ebdba41113aacf319d35f5a5;p=thirdparty%2Fopenssh-portable.git Fix pasto in fallback code. There is no parameter called "pathname", it should simply be "path". bz#3059, patch from samuel at cendio.se. --- diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c index aa1c7d7a3..7a26ee40c 100644 --- a/openbsd-compat/bsd-misc.c +++ b/openbsd-compat/bsd-misc.c @@ -172,7 +172,7 @@ fchownat(int fd, const char *path, uid_t owner, gid_t group, int flag) return -1; } # ifndef HAVE_FCHOWN - return chown(pathname, owner, group); + return chown(path, owner, group); # else # ifdef O_NOFOLLOW if (flag & AT_SYMLINK_NOFOLLOW) @@ -203,7 +203,7 @@ fchmodat(int fd, const char *path, mode_t mode, int flag) return -1; } # ifndef HAVE_FCHMOD - return chown(pathname, owner, group); + return chmod(path, mode); # else # ifdef O_NOFOLLOW if (flag & AT_SYMLINK_NOFOLLOW)