summaryrefslogtreecommitdiff
path: root/src/src/acl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/src/acl.c')
-rw-r--r--src/src/acl.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/src/acl.c b/src/src/acl.c
index bdc2b351d..ac82a3cb8 100644
--- a/src/src/acl.c
+++ b/src/src/acl.c
@@ -3137,7 +3137,9 @@ for (; cb; cb = cb->next)
{
const uschar *pp = p + 1;
while (*pp) pp++;
- fake_response_text = expand_string(string_copyn(p+1, pp-p-1));
+ /* The entire control= line was expanded at top so no need to expand
+ the part after the / */
+ fake_response_text = string_copyn(p+1, pp-p-1);
p = pp;
}
else /* Explicitly reset to default string */