From: George Melikov Date: Sun, 9 Apr 2017 23:01:54 +0000 (+0400) Subject: zfs_receive_010_pos.ksh local => typeset change X-Git-Tag: zfs-0.7.0-rc4~70 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=316da928253005187cd487b38d2c43dacef8eddd;p=zfs 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 --- 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 }