summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configs/sip.conf.sample2
-rw-r--r--main/tcptls.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/configs/sip.conf.sample b/configs/sip.conf.sample
index c416bd239..3282afda4 100644
--- a/configs/sip.conf.sample
+++ b/configs/sip.conf.sample
@@ -447,7 +447,7 @@ srvlookup=yes ; Enable DNS SRV lookups on outbound calls
; you should have their certificate installed here so the code can
; verify the authenticity of their certificate.
-;tlscadir=</path/to/ca/dir>
+;tlscapath=</path/to/ca/dir>
; A directory full of CA certificates. The files must be named with
; the CA subject name hash value.
; (see man SSL_CTX_load_verify_locations for more info)
diff --git a/main/tcptls.c b/main/tcptls.c
index b505f2a01..d0ee3b2aa 100644
--- a/main/tcptls.c
+++ b/main/tcptls.c
@@ -550,7 +550,7 @@ int ast_tls_read_conf(struct ast_tls_config *tls_cfg, struct ast_tcptls_session_
} else if (!strcasecmp(varname, "tlscafile")) {
ast_free(tls_cfg->cafile);
tls_cfg->cafile = ast_strdup(value);
- } else if (!strcasecmp(varname, "tlscapath")) {
+ } else if (!strcasecmp(varname, "tlscapath") || !strcasecmp(varname, "tlscadir")) {
ast_free(tls_cfg->capath);
tls_cfg->capath = ast_strdup(value);
} else if (!strcasecmp(varname, "tlsverifyclient")) {