diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2020-01-24 02:29:23 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2020-01-24 04:23:06 +0100 |
commit | 0585b5697201f5d8b32e6f1b0fee7e188268d30d (patch) | |
tree | a570ae5adbc2351c8dc9b0625f51cff72308fa4c /regress/test-exec.sh | |
parent | upstream: Handle zlib compression being disabled now that it's (diff) | |
download | openssh-0585b5697201f5d8b32e6f1b0fee7e188268d30d.tar.xz openssh-0585b5697201f5d8b32e6f1b0fee7e188268d30d.zip |
upstream: Do not warn about permissions on symlinks.
OpenBSD-Regress-ID: 339d4cbae224bd8743ffad9c3afb0cf3cb66c357
Diffstat (limited to '')
-rw-r--r-- | regress/test-exec.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/test-exec.sh b/regress/test-exec.sh index f17f9493d..fa92ee45a 100644 --- a/regress/test-exec.sh +++ b/regress/test-exec.sh @@ -1,4 +1,4 @@ -# $OpenBSD: test-exec.sh,v 1.72 2020/01/23 10:19:59 dtucker Exp $ +# $OpenBSD: test-exec.sh,v 1.73 2020/01/24 01:29:23 dtucker Exp $ # Placed in the Public Domain. #SUDO=sudo @@ -449,7 +449,7 @@ else unsafe="" dir="${OBJ}" while test ${dir} != "/"; do - if test -d "${dir}" ; then + if test -d "${dir}" && ! test -h "${dir}"; then perms=`ls -ld ${dir}` case "${perms}" in ?????w????*|????????w?*) unsafe="${unsafe} ${dir}" ;; |