Skip to content

Commit

Permalink
tls_mgm: Fixed bug where domain filters were shown under ip address f…
Browse files Browse the repository at this point in the history
…ilters
  • Loading branch information
danpascu committed Jun 27, 2019
1 parent 71d40f9 commit 7f22617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tls_mgm/tls_mgm.c
Expand Up @@ -2174,7 +2174,7 @@ static int list_domain(mi_item_t *resp_obj, struct tls_domain *d)
goto error;

for (filt = d->match_domains; filt; filt = filt->next)
if (add_mi_string(addrf_arr, 0, 0, filt->s.s, filt->s.len) < 0)
if (add_mi_string(domf_arr, 0, 0, filt->s.s, filt->s.len) < 0)
goto error;

switch (d->method) {
Expand Down

0 comments on commit 7f22617

Please sign in to comment.