Misc sanity checks and documentation
This commit is contained in:
parent
6418e030ce
commit
fa077839f0
4 changed files with 10 additions and 4 deletions
|
|
@ -862,7 +862,7 @@ load_config_file(clicon_handle h,
|
|||
}
|
||||
/* Open and parse local file into xml */
|
||||
if ((fp = fopen(filename, "r")) == NULL){
|
||||
clicon_err(OE_UNIX, errno, "open(%s)", filename);
|
||||
clicon_err(OE_UNIX, errno, "fopen(%s)", filename);
|
||||
goto done;
|
||||
}
|
||||
switch (format){
|
||||
|
|
|
|||
|
|
@ -89,6 +89,10 @@ clicon_files_recursive1(const char *dir,
|
|||
int res = 0;
|
||||
struct stat st;
|
||||
|
||||
if (dir == NULL){
|
||||
clicon_err(OE_UNIX, EINVAL, "Requires dir != NULL");
|
||||
goto done;
|
||||
}
|
||||
if ((dirp = opendir(dir)) != NULL)
|
||||
while ((dent = readdir(dirp)) != NULL) {
|
||||
if (dent->d_type == DT_DIR) {
|
||||
|
|
@ -128,6 +132,8 @@ clicon_files_recursive1(const char *dir,
|
|||
return retval;
|
||||
}
|
||||
|
||||
/*! Find files recursively according to a regexp
|
||||
*/
|
||||
int
|
||||
clicon_files_recursive(const char *dir,
|
||||
const char *regexp,
|
||||
|
|
|
|||
|
|
@ -957,8 +957,8 @@ yang_parse_find_match(clicon_handle h,
|
|||
if (dp)
|
||||
free(dp);
|
||||
}
|
||||
else if (strcmp(xml_name(xc), "CLICON_YANG_DIR") == 0){
|
||||
dir = xml_body(xc);
|
||||
else if (strcmp(xml_name(xc), "CLICON_YANG_DIR") == 0 &&
|
||||
(dir = xml_body(xc)) != NULL){
|
||||
/* get all matching files in this directory recursively */
|
||||
if ((cvv = cvec_new(0)) == NULL){
|
||||
clicon_err(OE_UNIX, errno, "cvec_new");
|
||||
|
|
|
|||
|
|
@ -218,7 +218,7 @@ if [ ! -d $dir ]; then
|
|||
mkdir $dir
|
||||
fi
|
||||
|
||||
# Default restconf configuration: http IPv4
|
||||
# Default restconf configuration: IPv4
|
||||
# Can be placed in clixon-config
|
||||
# Note that https clause assumes there exists certs and keys in /etc/ssl,...
|
||||
# Args:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue