Fixed: ["autocli:hide-show" extension cause bug in xmldb_put method #343](https://github.com/clicon/clixon/issues/343)
As a side-effect, added extra "autocliext" parameter to: - clixon_xml2file() - clixon_json2file() - clixon_json2cbuf() - clixon_txt2file()
This commit is contained in:
parent
e724dd7f40
commit
4514f2a538
26 changed files with 213 additions and 144 deletions
|
|
@ -282,11 +282,11 @@ main(int argc, char **argv)
|
|||
if (sort)
|
||||
xml_sort_recurse(xb);
|
||||
if (strcmp(xml_name(xb),"top")==0){
|
||||
if (clixon_xml2file(stdout, xb, 0, 0, fprintf, 1) < 0)
|
||||
if (clixon_xml2file(stdout, xb, 0, 0, fprintf, 1, 0) < 0)
|
||||
goto done;
|
||||
}
|
||||
else{
|
||||
if (clixon_xml2file(stdout, xb, 0, 0, fprintf, 0) < 0)
|
||||
if (clixon_xml2file(stdout, xb, 0, 0, fprintf, 0, 0) < 0)
|
||||
goto done;
|
||||
}
|
||||
fprintf(stdout, "\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue