Skip to content

Commit

Permalink
tls_mgm: fix variable name from previous commit
Browse files Browse the repository at this point in the history
(cherry picked from commit 008196a)
  • Loading branch information
rvlad-patrascu committed Dec 2, 2021
1 parent e468893 commit 139fed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tls_mgm/tls_domain.c
Expand Up @@ -117,7 +117,7 @@ void tls_free_domain(struct tls_domain *dom)
dom->refs--;
if (dom->refs == 0) {
LM_DBG("Freeing domain: %.*s\n",
tls_domain->name.len, tls_domain->name.s);
dom->name.len, dom->name.s);

destroy_tls_dom(dom);

Expand Down

0 comments on commit 139fed3

Please sign in to comment.