btrfs-progs: subvol show: print received uuid
authorDavid Sterba <dsterba@suse.cz>
Tue, 2 Jun 2015 15:48:32 +0000 (17:48 +0200)
committerDavid Sterba <dsterba@suse.cz>
Wed, 3 Jun 2015 10:52:52 +0000 (12:52 +0200)
Signed-off-by: David Sterba <dsterba@suse.cz>
cmds-subvolume.c

index 3d5a766..fa6d56c 100644 (file)
@@ -974,6 +974,12 @@ static int cmd_subvol_show(int argc, char **argv)
                uuid_unparse(get_ri.puuid, uuidparse);
        printf("\tParent uuid: \t\t%s\n", uuidparse);
 
+       if (uuid_is_null(get_ri.ruuid))
+               strcpy(uuidparse, "-");
+       else
+               uuid_unparse(get_ri.ruuid, uuidparse);
+       printf("\tReceived uuid: \t\t%s\n", uuidparse);
+
        if (get_ri.otime) {
                struct tm tm;