From: Magnus Holmgren Date: Sat, 10 Feb 2007 23:51:11 +0000 (+0000) Subject: s/iterate_item_save/save_iterate_item/ to be consistent with other save_* variables. X-Git-Tag: exim-4_67~39 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/282b357d3a6f6ac8d8bdc3253923f78046414baa s/iterate_item_save/save_iterate_item/ to be consistent with other save_* variables. --- diff --git a/src/src/expand.c b/src/src/expand.c index 1409437d4..155f4d836 100644 --- a/src/src/expand.c +++ b/src/src/expand.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/expand.c,v 1.80 2007/02/06 10:00:24 ph10 Exp $ */ +/* $Cambridge: exim/src/src/expand.c,v 1.81 2007/02/10 23:51:11 magnus Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -2360,7 +2360,7 @@ switch(cond_type) case ECOND_FORANY: { int sep = 0; - uschar *iterate_item_save = iterate_item; + uschar *save_iterate_item = iterate_item; while (isspace(*s)) s++; if (*s++ != '{') goto COND_FAILED_CURLY_START; @@ -2411,7 +2411,7 @@ switch(cond_type) if (tempcond == (cond_type == ECOND_FORANY)) break; } - iterate_item = iterate_item_save; + iterate_item = save_iterate_item; return s; }