diff options
author | Tony Finch <dot@dot.at> | 2006-08-21 11:31:43 +0000 |
---|---|---|
committer | Tony Finch <dot@dot.at> | 2006-08-21 11:31:43 +0000 |
commit | 944e9e9cf011263364695ebc7698bb37b538cfe1 (patch) | |
tree | 53c33df4e91f595fffbe0cbd310cb24ca0af06c4 /src | |
parent | 5abeaa6ed041be7701397e36ceed5379ac356998 (diff) |
In the add_headers option to the mail command in an Exim filter,
there was a bug that Exim would claim a syntax error in any
header after the first one which had an odd number of characters
in the field name.
Diffstat (limited to 'src')
-rw-r--r-- | src/src/filter.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/src/filter.c b/src/src/filter.c index b149620e1..319c03f6c 100644 --- a/src/src/filter.c +++ b/src/src/filter.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/filter.c,v 1.11 2006/07/07 14:36:04 ph10 Exp $ */ +/* $Cambridge: exim/src/src/filter.c,v 1.12 2006/08/21 11:31:43 fanf2 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -2186,7 +2186,6 @@ while (commands != NULL) string_printing(s), command_list[commands->command]); return FF_ERROR; } - pp++; } p = pp; } |