releasing version 8.66

This commit is contained in:
joey
2007-03-22 21:46:04 +00:00
parent cc5c0ade81
commit a712ba401f
2 changed files with 8 additions and 2 deletions

View File

@@ -646,10 +646,10 @@ Returns the date, in rfc822 format.
sub date {
my $this=shift;
my $date=$this->runpipe(1, "822-date");
my $date=$this->runpipe(1, "date -R");
chomp $date;
if (!$date) {
die "822-date did not return a valid result. You probably need to install the dpkg-dev debian package";
die "date -R did not return a valid result.";
}
return $date;