If the version isn't valid, try "other" before giving up.

This commit is contained in:
terry%netscape.com 1999-01-27 03:00:31 +00:00
Родитель 15fa6026c1
Коммит a57c7c040a
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -97,7 +97,10 @@ if (lsearch($::components{$prod}, $comp) < 0) {
Punt("component", $comp);
}
if (lsearch($::versions{$prod}, $version) < 0) {
Punt("version", $version);
$version = "other";
if (lsearch($::versions{$prod}, $version) < 0) {
Punt("version", $version);
}
}