* clixon-config YAML file has new revision: 2019-02-06.

* Replaced all calls to (obsolete) `cli_output` with `fprintf`
* Added _experimental_ config option `CLICON_CLI_UTF8` default set to 0.
  * CLIgen UTF8 does not work with scrolling and control editing
This commit is contained in:
Olof hagsand 2019-02-06 14:33:04 +01:00
parent ae8d28fae8
commit 5b1c3d9a86
11 changed files with 55 additions and 28 deletions

View file

@ -193,7 +193,7 @@ expand_dbvar(void *h,
if (xml_merge(xt, xtop, yspec, &reason) < 0) /* Merge xtop into xt */
goto done;
if (reason){
cli_output(stderr, "%s\n", reason);
fprintf(stderr, "%s\n", reason);
goto done;
}
if ((xcur = xpath_first(xt, "%s", xpath)) == NULL){
@ -602,9 +602,11 @@ done:
return retval;
}
int cli_show_version(clicon_handle h, cvec *vars, cvec *argv)
int cli_show_version(clicon_handle h,
cvec *vars,
cvec *argv)
{
cli_output(stdout, "%s\n", CLIXON_VERSION_STRING);
fprintf(stdout, "%s\n", CLIXON_VERSION_STRING);
return 0;
}