summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnand Jain <anand.jain@oracle.com>2012-10-25 16:00:31 +0800
committerDavid Sterba <dsterba@suse.cz>2013-02-01 17:42:14 +0100
commitaebc64f01e2fe70b822ea6c10ae67074ab1f2b7c (patch)
tree654b1cf8de394700c140e93a3f51f4537eac3d8c
parent629dfb8fa801a8fdbccae7b634b1d288120ce4b9 (diff)
Btrfs-progs: dont print uuid unless -u option is given
unless it was intentional to include uuid when -s option is (show snapshot only) given, we would need this break statement. Signed-off-by: Anand Jain <anand.jain@oracle.com>
-rw-r--r--cmds-subvolume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds-subvolume.c b/cmds-subvolume.c
index f8ed2ffd..63c5990f 100644
--- a/cmds-subvolume.c
+++ b/cmds-subvolume.c
@@ -361,7 +361,7 @@ static int cmd_subvol_list(int argc, char **argv)
0);
btrfs_list_setup_print_column(BTRFS_LIST_OGENERATION);
btrfs_list_setup_print_column(BTRFS_LIST_OTIME);
-
+ break;
case 'u':
btrfs_list_setup_print_column(BTRFS_LIST_UUID);
break;