diff options
author | Loganaden Velvindron <logan@cvs.openbsd.org> | 2014-05-04 10:41:00 +0000 |
---|---|---|
committer | Loganaden Velvindron <logan@cvs.openbsd.org> | 2014-05-04 10:41:00 +0000 |
commit | 59e55d5ecbdf9e1d330f4f5e4781526330005706 (patch) | |
tree | bbdb91c4bf99039948ca3170cc176478ba3dbf8e /regress | |
parent | 7912ad33492a640fe7edd6140dde61edbabdcd01 (diff) |
Remove the Z flag from the list of malloc options as it
was removed from malloc.c 10 days ago.
OK from miod@
Diffstat (limited to 'regress')
-rw-r--r-- | regress/usr.bin/ssh/connect-privsep.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/connect-privsep.sh b/regress/usr.bin/ssh/connect-privsep.sh index 5e66bfd6752..da90f271e49 100644 --- a/regress/usr.bin/ssh/connect-privsep.sh +++ b/regress/usr.bin/ssh/connect-privsep.sh @@ -1,4 +1,4 @@ -# $OpenBSD: connect-privsep.sh,v 1.4 2012/07/02 14:37:06 dtucker Exp $ +# $OpenBSD: connect-privsep.sh,v 1.5 2014/05/04 10:40:59 logan Exp $ # Placed in the Public Domain. tid="proxy connect with privsep" @@ -25,7 +25,7 @@ done # Because sandbox is sensitive to changes in libc, especially malloc, retest # with every malloc.conf option (and none). -for m in '' A F G H J P R S X Z '<' '>'; do +for m in '' A F G H J P R S X '<' '>'; do for p in 1 2; do env MALLOC_OPTIONS="$m" ${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true if [ $? -ne 0 ]; then |