version 1.159, 2003/10/30 22:52:24
|
version 1.160, 2003/11/01 16:32:32
|
Line 2430 sub currentversion {
|
Line 2430 sub currentversion {
|
# see if this is a regular file (ignore links produced earlier) |
# see if this is a regular file (ignore links produced earlier) |
my $thisfile=$ulsdir.'/'.$ulsfn; |
my $thisfile=$ulsdir.'/'.$ulsfn; |
unless (-l $thisfile) { |
unless (-l $thisfile) { |
if ($thisfile=~/\Q$fnamere1\E(\d+)\Q$fnamere2\E/) { |
if ($thisfile=~/\Q$fnamere1\E(\d+)\Q$fnamere2\E$/) { |
if ($1>$version) { $version=$1; } |
if ($1>$version) { $version=$1; } |
} |
} |
} |
} |