Skip to content

Commit

Permalink
lib-master: Reply from config process is tabescaped
Browse files Browse the repository at this point in the history
Found by J. Nick Koston <nick@cpanel.net>
  • Loading branch information
cmouse authored and villesavolainen committed Mar 15, 2018
1 parent c1256ee commit 45ba1f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib-master/master-service-settings-cache.c
Expand Up @@ -6,6 +6,7 @@
#include "llist.h"
#include "settings-parser.h"
#include "dns-util.h"
#include "strescape.h"
#include "master-service-private.h"
#include "master-service-settings.h"
#include "master-service-settings-cache.h"
Expand Down Expand Up @@ -96,7 +97,7 @@ int master_service_settings_cache_init_filter(struct master_service_settings_cac

/* parse filters */
while(*filters != NULL) {
const char *const *keys = t_strsplit_spaces(*filters, " ");
const char *const *keys = t_strsplit_tabescaped(*filters);
struct config_filter *filter =
p_new(cache->pool, struct config_filter, 1);
while(*keys != NULL) {
Expand Down

0 comments on commit 45ba1f5

Please sign in to comment.