From bc20fff44cc104de6f1354d90664496a0c79e48e Mon Sep 17 00:00:00 2001 From: kakwa Date: Fri, 26 Aug 2016 20:59:46 +0200 Subject: [PATCH] use NULL instead of a section (for the conf parser to look for default policy) --- src/lib/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils.c b/src/lib/utils.c index 08463cd..105c058 100644 --- a/src/lib/utils.c +++ b/src/lib/utils.c @@ -240,7 +240,7 @@ int set_params(rfc3161_context *ct, char *conf_file) { ct->http_options[http_counter] = NULL; } - ct->ts_ctx = create_tsctx(ct, conf, "tsa", NULL); + ct->ts_ctx = create_tsctx(ct, conf, NULL, NULL); if (ct->ts_ctx == NULL) ret = 0; return ret;