- Misc documentation

- Test: move pid file from tmp to global storage to prevent multiple instances
This commit is contained in:
Olof hagsand 2022-04-14 15:20:31 +02:00
parent 8c60d81ed2
commit 580396d32f
9 changed files with 14 additions and 10 deletions

View file

@ -301,7 +301,6 @@ main(int argc,
cvec_print(stdout, nsc);
goto ok; /* need a switch to continue, now just print and quit */
}
/*
* If fp=stdin, then continue reading from stdin (after CR)
* XXX Note 0 above, stdin here
@ -317,7 +316,7 @@ main(int argc,
if ((ret = xml_bind_yang(x0, YB_MODULE, yspec, &xerr)) < 0)
goto done;
if (ret == 0){
if ((cb = cbuf_new()) ==NULL){
if ((cbret = cbuf_new()) ==NULL){
clicon_err(OE_XML, errno, "cbuf_new");
goto done;
}