Bug 395515: account for a Y2K bug in old versions of CVS (we have old files in our repo). r=chase

This commit is contained in:
justdave%bugzilla.org 2007-09-24 02:20:02 +00:00
Родитель dcd17482e7
Коммит 1f9f6404f9
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -7,6 +7,7 @@
# Contributor(s):
# Chase Phillips <chase@mozilla.org>
# Reed Loden <reed@mozilla.com>
# Dave Miller <justdave@mozilla.com>
#
# Use at your own risk.
#
@ -215,7 +216,7 @@ sub process_rev_info {
if ( $line =~ /^date[\s\t]+/ ) {
my $date = get_next_cvs_formatted_date();
$line =~ s/^(date[\s\t]+)\d{4}\.\d{2}\.\d{2}\.\d{2}\.\d{2}\.\d{2}/$1$date/;
$line =~ s/^(date[\s\t]+)\d{2,4}\.\d{2}\.\d{2}\.\d{2}\.\d{2}\.\d{2}/$1$date/;
}
return $line;