search for: bd654a3

Displaying 2 results from an estimated 2 matches for "bd654a3".

Did you mean: 5d654a1
2015 Mar 31
1
[PATCH] actions.ml: fix a typo
s/inclding/including Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com> --- generator/actions.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/actions.ml b/generator/actions.ml index bd654a3..11ea436 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12262,7 +12262,7 @@ Destroy a quota group." }; optional = Some "btrfs"; camel_name = "BTRFSQgroupShow"; shortdesc = "show subvolume quota groups"; longdesc = "\ -Show all...
2015 Mar 25
1
[PATCH] New API: ls_i
...return NULL; + } + + r = command (&out, &err, str_ls, "-i", sdir, NULL); + if (r == -1) { + reply_with_error ("%s", err); + free (out); + return NULL; + } + + return out; /* caller frees */ +} diff --git a/generator/actions.ml b/generator/actions.ml index bd654a3..edc4818 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12575,6 +12575,13 @@ numbered C<partnum> on device C<device>. It returns C<primary>, C<logical>, or C<extended>." }; + { defaults with + name = "ls_i"; + style = RStrin...