[PATCH] btrfs-progs: Make property work with -t option

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



# btrfs prop list -t f .
btrfs property list: too many arguments
...
# btrfs prop get -t f . label
btrfs property get: too many arguments
...
# btrfs prop set -t f . label abc
btrfs property set: too many arguments
...

Signed-off-by: Kusanagi Kouichi <slash@xxxxxxxxxxxxxxx>
---
 cmds-property.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cmds-property.c b/cmds-property.c
index df53f91..8b4869f 100644
--- a/cmds-property.c
+++ b/cmds-property.c
@@ -392,7 +392,7 @@ static int cmd_get(int argc, char **argv)
 	char *name = NULL;
 	int types = 0;
 
-	if (check_argc_min(argc, 2) || check_argc_max(argc, 4))
+	if (check_argc_min(argc, 2) || check_argc_max(argc, 5))
 		usage(cmd_get_usage);
 
 	parse_args(argc, argv, cmd_get_usage, &types, &object, &name, NULL);
@@ -417,7 +417,7 @@ static int cmd_set(int argc, char **argv)
 	char *value;
 	int types = 0;
 
-	if (check_argc_min(argc, 4) || check_argc_max(argc, 5))
+	if (check_argc_min(argc, 4) || check_argc_max(argc, 6))
 		usage(cmd_set_usage);
 
 	parse_args(argc, argv, cmd_set_usage, &types, &object, &name, &value);
@@ -437,7 +437,7 @@ static int cmd_list(int argc, char **argv)
 	char *object = NULL;
 	int types = 0;
 
-	if (check_argc_min(argc, 2) || check_argc_max(argc, 3))
+	if (check_argc_min(argc, 2) || check_argc_max(argc, 4))
 		usage(cmd_list_usage);
 
 	parse_args(argc, argv, cmd_list_usage, &types, &object, NULL, NULL);
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Filesystem Development]     [Linux NFS]     [Linux NILFS]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux