From e3702305e6378bfc32d3c46d9b0dbc0384c8c544 Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Fri, 15 Apr 2016 02:38:41 +0200 Subject: [PATCH] btrbk: bugfix: update uuid_cache after btrfs_subvolume_show() --- btrbk | 1 + 1 file changed, 1 insertion(+) diff --git a/btrbk b/btrbk index f476a71..b3a295b 100755 --- a/btrbk +++ b/btrbk @@ -2513,6 +2513,7 @@ sub macro_send_receive(@) my $detail = btrfs_subvolume_show($source); die unless($detail->{uuid}); $source->{node}{uuid} = $detail->{uuid}; + $uuid_cache{$detail->{uuid}} = $source->{node}; } }