search for: a950c17

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

Did you mean: 95017
2015 Nov 10
0
[PATCH] daemon: lvm: Change the separator character to ':'.
...dules is separated by commas, breaking our parser. Change the separator to another arbitrary character (colon) which hopefully is not used by any column. --- generator/daemon.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generator/daemon.ml b/generator/daemon.ml index a950c17..13ef350 100644 --- a/generator/daemon.ml +++ b/generator/daemon.ml @@ -561,7 +561,7 @@ cleanup_free_mountable (mountable_t *mountable) pr " fprintf (stderr, \"%%s: failed: string finished early, around token %%s\\n\", __func__, \"%s\");\n" name;...
2015 Oct 21
2
[PATCH 1/2] generator: add a FilenameList parameter type
...| StringList n | DeviceList n -> + | StringList n | DeviceList n | FilenameList n -> next (); pr "string[] %s" n | Bool n -> next (); pr "bool %s" n diff --git a/generator/daemon.ml b/generator/daemon.ml index 1825de4..a950c17 100644 --- a/generator/daemon.ml +++ b/generator/daemon.ml @@ -255,7 +255,7 @@ cleanup_free_mountable (mountable_t *mountable) | Mountable n | Mountable_or_Path n -> pr " CLEANUP_FREE_MOUNTABLE mountable_t %s\n" n; pr " = { .device = NULL...