zfs_receive_010_pos.ksh local => typeset change

Ksh uses `typeset`, `local` is a Bash analog.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: John Wren Kennedy <john.kennedy@delphix.com>
Signed-off-by: George Melikov <mail@gmelikov.ru>
Closes #5995
This commit is contained in:
George Melikov 2017-04-10 03:01:54 +04:00 committed by Brian Behlendorf
parent d3b1783e44
commit 316da92825
1 changed files with 8 additions and 8 deletions

View File

@ -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
}