--- web/cgi-bin/cvslog.cgi 2002/02/04 00:42:43 1.21 +++ web/cgi-bin/cvslog.cgi 2002/02/05 14:03:08 1.22 @@ -84,7 +84,7 @@ print <<"END";

$heading

END -print `$updatecmd`; +print `$updatecmd >/dev/null 2>&1`; my(@modules) = split (/\s+/, $modulelist); @@ -124,11 +124,11 @@ foreach my $module (@modules) { print ""; print HTML_encode($file); print " "; - if($rest =~ /\((\d+).(\d+)(.*)\)/) { + if($rest =~ /\((\S+)\.(\d+)(.*)\)/) { my $newrev = "$1.$2"; my $oldminver = $2-1; my $oldrev = "$1.$oldminver"; - if(!($1==1 && $2==1)) { + if($2 != 1) { my $diff = ".diff?r1=$oldrev&r2=$newrev"; print "("; print HTML_encode("$1.$2");