btrbk: fix unsafe path for btrfs send to file

pull/427/head
Axel Burri 2021-08-28 12:55:16 +02:00
parent fe53198661
commit 424127441d
1 changed files with 1 additions and 1 deletions

2
btrbk
View File

@ -1709,7 +1709,7 @@ sub btrfs_send_to_file($$$;$$)
$stream_options->{stream_compress} = $compress if($compress);
my @send_options;
push(@send_options, '-p', $parent_path) if($parent_path);
push(@send_options, '-p', { unsafe => $parent_path } ) if($parent_path);
#push(@send_options, '-v') if($loglevel >= 3);
my @cmd_pipe;