diff options
author | Michael Haardt <michael@moria.de> | 2008-06-06 14:40:21 +0000 |
---|---|---|
committer | Michael Haardt <michael@moria.de> | 2008-06-06 14:40:21 +0000 |
commit | ed2a48660e22ce41fc7ca692743531ffdca57868 (patch) | |
tree | f1e85cba52dec8dde60ef4a1c658f6c568944367 | |
parent | 08dfc92a7bdd17647ef79e47e85a121a57f55274 (diff) |
Fixed bug in parse_date_time() introduced with last change.
-rw-r--r-- | src/src/parse.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/src/parse.c b/src/src/parse.c index f83ce14ac..1558977a4 100644 --- a/src/src/parse.c +++ b/src/src/parse.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/parse.c,v 1.12 2008/06/04 13:29:34 michael Exp $ */ +/* $Cambridge: exim/src/src/parse.c,v 1.13 2008/06/06 14:40:21 michael Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -2010,9 +2010,11 @@ extern char **environ; char **old_environ; static char gmt0[]="TZ=GMT0"; static char *gmt_env[]={ gmt0, (char*)0 }; +uschar *try; -if (str=parse_day_of_week(str)) +if ((try=parse_day_of_week(str))) { + str=try; if (*str!=',') return 0; ++str; } |