Cleanup pull request

Remove clixon-restconf 2021-04-12, add changes to 2021-03-15
Remove noisy debug logging
This commit is contained in:
Dave Cornejo 2021-04-15 07:30:26 -10:00
parent e4885d51e6
commit ec0c5118a4
3 changed files with 12 additions and 227 deletions

View file

@ -1455,14 +1455,14 @@ restconf_openssl_init(clicon_handle h,
if (strcmp(xml_body(x), "true") == 0) {
rlp.rlim_cur = RLIM_INFINITY;
rlp.rlim_max = RLIM_INFINITY;
clicon_log(LOG_NOTICE, "%s: core dump emanbled", __func__);
} else {
rlp.rlim_cur = 0;
rlp.rlim_max = 0;
clicon_log(LOG_NOTICE, "%s: core dump disnbled", __func__);
}
int status = setrlimit(RLIMIT_CORE, &rlp);
clicon_log(LOG_NOTICE, "%s: setrlimit=%ld", __func__, status);
if (status != 0) {
clicon_log(LOG_NOTICE, "%s: setrlimit() failed, %s", __func__, strerror(errno));
}
}
if (init_openssl() < 0)