summaryrefslogtreecommitdiff
path: root/cmds-property.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2015-06-09 14:22:05 +0200
committerDavid Sterba <dsterba@suse.cz>2015-06-09 14:26:33 +0200
commit330709ee136f146551718c1c2f351445cba95bfa (patch)
tree3ecaf3f93e5b275e5e030525d70d03f2ea8e02ad /cmds-property.c
parent54003d7ee6c71011ec41a5e4e557ec6c83a831de (diff)
btrfs-progs: add command group info strings
They're printed in the 'btrfs' command group summary. Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'cmds-property.c')
-rw-r--r--cmds-property.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/cmds-property.c b/cmds-property.c
index 6501338e..5f1dd5b3 100644
--- a/cmds-property.c
+++ b/cmds-property.c
@@ -460,8 +460,11 @@ static int cmd_list(int argc, char **argv)
return ret;
}
+static const char property_cmd_group_info[] =
+"modify properties of filesystem objects";
+
const struct cmd_group property_cmd_group = {
- property_cmd_group_usage, NULL, {
+ property_cmd_group_usage, property_cmd_group_info, {
{ "get", cmd_get, cmd_get_usage, NULL, 0 },
{ "set", cmd_set, cmd_set_usage, NULL, 0 },
{ "list", cmd_list, cmd_list_usage, NULL, 0 },