Skip to content

Commit

Permalink
config: tabescape local name and service
Browse files Browse the repository at this point in the history
  • Loading branch information
cmouse authored and sirainen committed Mar 12, 2018
1 parent cecfc4e commit d14694c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/config-connection.c
Expand Up @@ -159,10 +159,10 @@ static int config_filters_request(struct config_connection *conn)
o_stream_nsend_str(conn->output, "FILTER");
if (filter->service != NULL)
o_stream_nsend_str(conn->output, t_strdup_printf("\tservice=%s",
filter->service));
str_tabescape(filter->service)));
if (filter->local_name != NULL)
o_stream_nsend_str(conn->output, t_strdup_printf("\tlocal-name=%s",
filter->local_name));
str_tabescape(filter->local_name)));
if (filter->local_bits > 0)
o_stream_nsend_str(conn->output, t_strdup_printf("\tlocal-net=%s/%u",
net_ip2addr(&filter->local_net),
Expand Down

0 comments on commit d14694c

Please sign in to comment.