]> sourceware.org Git - lvm2.git/commitdiff
select: add list of allowed types for each selection operator mentioned in help
authorPeter Rajnoha <prajnoha@redhat.com>
Thu, 19 Jun 2014 13:19:54 +0000 (15:19 +0200)
committerPeter Rajnoha <prajnoha@redhat.com>
Thu, 19 Jun 2014 13:19:54 +0000 (15:19 +0200)
libdm/libdm-report.c

index 867bf441507497e7074cfa7cbd041a097cd8fdc3..00b99c89c813d409d985249b9a308472f6e8a453 100644 (file)
@@ -103,14 +103,14 @@ struct op_def {
  * (e.g. =~ comes before =)
 */
 static struct op_def _op_cmp[] = {
-       { "=~", FLD_CMP_REGEX, "Matching regular expression." },
-       { "!~", FLD_CMP_REGEX|FLD_CMP_NOT, "Not matching regular expression." },
-       { "=", FLD_CMP_EQUAL, "Equal to." },
-       { "!=", FLD_CMP_NOT|FLD_CMP_EQUAL, "Not equal to." },
-       { ">=", FLD_CMP_NUMBER|FLD_CMP_GT|FLD_CMP_EQUAL, "Greater than or equal to." },
-       { ">", FLD_CMP_NUMBER|FLD_CMP_GT, "Greater than" },
-       { "<=", FLD_CMP_NUMBER|FLD_CMP_LT|FLD_CMP_EQUAL, "Less than or equal to." },
-       { "<", FLD_CMP_NUMBER|FLD_CMP_LT, "Less than." },
+       { "=~", FLD_CMP_REGEX, "Matching regular expression. [regex]" },
+       { "!~", FLD_CMP_REGEX|FLD_CMP_NOT, "Not matching regular expression. [regex]" },
+       { "=", FLD_CMP_EQUAL, "Equal to. [number, size, percent, string, string list]" },
+       { "!=", FLD_CMP_NOT|FLD_CMP_EQUAL, "Not equal to. [number, size, percent, string, string_list]" },
+       { ">=", FLD_CMP_NUMBER|FLD_CMP_GT|FLD_CMP_EQUAL, "Greater than or equal to. [number, size, percent]" },
+       { ">", FLD_CMP_NUMBER|FLD_CMP_GT, "Greater than. [number, size, percent]" },
+       { "<=", FLD_CMP_NUMBER|FLD_CMP_LT|FLD_CMP_EQUAL, "Less than or equal to. [number, size, percent]" },
+       { "<", FLD_CMP_NUMBER|FLD_CMP_LT, "Less than. [number, size, percent]" },
        { NULL, 0, NULL }
 };
 
This page took 0.040233 seconds and 5 git commands to generate.