From 316da928253005187cd487b38d2c43dacef8eddd Mon Sep 17 00:00:00 2001 From: George Melikov Date: Mon, 10 Apr 2017 03:01:54 +0400 Subject: zfs_receive_010_pos.ksh local => typeset change Ksh uses `typeset`, `local` is a Bash analog. Reviewed-by: Brian Behlendorf Reviewed-by: John Wren Kennedy Signed-off-by: George Melikov Closes #5995 --- .../cli_root/zfs_receive/zfs_receive_010_pos.ksh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh b/tests/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh index 1be4799d9..a9c0a47a3 100755 --- a/tests/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh +++ b/tests/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh @@ -47,9 +47,9 @@ rfs=$TESTPOOL/$TESTFS/base/rfs function make_object { - local objnum=$1 - local mntpnt=$2 - local type=$3 + typeset objnum=$1 + typeset mntpnt=$2 + typeset type=$3 if [[ $type == "file" ]]; then dd if=/dev/urandom of=${mntpnt}/f$objnum bs=512 count=16 elif [[ $type == "hole1" ]]; then @@ -65,11 +65,11 @@ function make_object function create_pair { - local objnum=$1 - local mntpnt1=$2 - local mntpnt2=$3 - local type1=$4 - local type2=$5 + typeset objnum=$1 + typeset mntpnt1=$2 + typeset mntpnt2=$3 + typeset type1=$4 + typeset type2=$5 make_object $objnum $mntpnt1 $type1 make_object $objnum $mntpnt2 $type2 } -- cgit v1.2.3