From 9103cbc79da0a578ba1e8eea2ad19839b836fa15 Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Tue, 28 Apr 2015 20:49:18 +0200 Subject: [PATCH] btrbk: output vinfo->{PRINT} instead of {URL} in _origin_tree() --- btrbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btrbk b/btrbk index 0022f09..381d269 100755 --- a/btrbk +++ b/btrbk @@ -1125,7 +1125,7 @@ sub _origin_tree return 0; } if($uuid_fs_map{$uuid}) { - push(@$lines, ["$prefix" . join(" === ", sort keys %{$uuid_fs_map{$uuid}}), $uuid]); + push(@$lines, ["$prefix" . join(" === ", sort map { $_->{PRINT} } values %{$uuid_fs_map{$uuid}}), $uuid]); } else { push(@$lines, ["$prefix/$node->{path}", $uuid]); }