[PATCH] [btrfs-progs integration] incorrect argument checking for "btrfs sub snap -r"
From: Stephane Chazelas <hidden>
Date: 2011-06-30 12:34:38
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Stephane Chazelas <hidden>
Date: 2011-06-30 12:34:38
Subsystem:
the rest · Maintainer:
Linus Torvalds
Looks like this was missing in integration-20110626 for the readonly snapshot patch:
diff --git a/btrfs.c b/btrfs.c
index e117172..be6ece5 100644
--- a/btrfs.c
+++ b/btrfs.c@@ -49,7 +49,7 @@ static struct Command commands[] = { /* avoid short commands different for the case only */ - { do_clone, 2, + { do_clone, -1, "subvolume snapshot", "[-r] <source> [<dest>/]<name>\n" "Create a writable/readonly snapshot of the subvolume <source> with\n" "the name <name> in the <dest> directory.",
Without that, "btrfs sub snap -r x y" would fail as it's not *2* arguments. -- Stephane