mirror of
https://github.com/kakwa/uts-server
synced 2025-01-10 13:44:29 +01:00
exit at the first TS_RESP_CTX initialization fail
This commit is contained in:
parent
0a8166d380
commit
141b8f11f7
@ -364,8 +364,10 @@ int set_params(rfc3161_context *ct, char *conf_file, char *conf_wd) {
|
||||
for (int i = 0; i < numthreads; i++) {
|
||||
ct->ts_ctx_pool[i].ts_ctx = create_tsctx(ct, ct->conf, TSA_SECTION, NULL);
|
||||
ct->ts_ctx_pool[i].available = 1;
|
||||
if (ct->ts_ctx_pool[i].ts_ctx == NULL)
|
||||
if (ct->ts_ctx_pool[i].ts_ctx == NULL){
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
// like any good daemon, return to '/' once the configuration is loaded
|
||||
chdir("/");
|
||||
|
Loading…
x
Reference in New Issue
Block a user