From 5d202199f527590be29784e736600ddde4e4812b Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 1 Jun 2010 17:51:50 +0100 Subject: [PATCH] acl: Allow tabs between extended acl names. --HG-- branch : HEAD --- src/plugins/acl/acl-backend-vfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/acl/acl-backend-vfile.c b/src/plugins/acl/acl-backend-vfile.c index 48c6968f34..0bd94eb0ac 100644 --- a/src/plugins/acl/acl-backend-vfile.c +++ b/src/plugins/acl/acl-backend-vfile.c @@ -353,7 +353,7 @@ acl_parse_rights(pool_t pool, const char *acl, const char **error_r) return NULL; } - names = t_strsplit_spaces(acl + 1, ", "); + names = t_strsplit_spaces(acl + 1, ", \t"); for (; *names != NULL; names++) { const char *name = p_strdup(pool, *names); array_append(&rights, &name, 1); -- 2.47.3