diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2007-06-29 09:20:37 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2007-06-29 09:20:37 +0000 |
commit | 1f5497b2a08c38975c9945122a0279bb03f99e28 (patch) | |
tree | 0e5a0c3de395a94111f87741d105cef86747be43 /test/patchexim | |
parent | f53dbcfc62a395f3f3015a5b595ca538d537c2a5 (diff) |
Fix stupid oversight in $max_received_linelength.
Diffstat (limited to 'test/patchexim')
-rwxr-xr-x | test/patchexim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/patchexim b/test/patchexim index c8fbe466b..8322961a7 100755 --- a/test/patchexim +++ b/test/patchexim @@ -1,6 +1,6 @@ #! /usr/bin/perl -w -# $Cambridge: exim/test/patchexim,v 1.1 2006/02/06 16:07:10 ph10 Exp $ +# $Cambridge: exim/test/patchexim,v 1.2 2007/06/29 09:20:37 ph10 Exp $ ############################################################################### # This is an auxiliary script that is part of the Exim test suite. It must be # @@ -18,7 +18,7 @@ open(OUT, ">eximdir/exim") || die "** Failed to open eximdir/exim: $!\n"; while(<IN>) { s/>>>running<<</<<<testing>>>/; - s/(\d+\.\d+(?:\.\d+)?(-RC\d+)?\0<<eximversion>>)/"x.yz\0" . ("*" x (length($1) - 5))/e; + s/(\d+\.\d+(?:\.\d+)?(-RC\d+|-dev)?\0<<eximversion>>)/"x.yz\0" . ("*" x (length($1) - 5))/e; print OUT; } |