diff options
author | peter <peter@FreeBSD.org> | 1999-12-09 14:17:25 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-12-09 14:17:25 +0000 |
commit | 675ebdcf0978d9a0e2b69d8bf2b1461e833b680d (patch) | |
tree | 80ce8a221441c5ac3790eab6aab0f863497b8847 | |
parent | e6161f2762ea189f2450c7543585fe0aa58842ba (diff) | |
download | FreeBSD-ports-675ebdcf0978d9a0e2b69d8bf2b1461e833b680d.zip FreeBSD-ports-675ebdcf0978d9a0e2b69d8bf2b1461e833b680d.tar.gz |
Fix the dreaded: 'Argument "1.1.1.1" isn't numeric in eq at
/home/ncvs/CVSROOT/commit_prep.pl line 119, <FILE> chunk 6.' error message.
-rwxr-xr-x | CVSROOT/commit_prep.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CVSROOT/commit_prep.pl b/CVSROOT/commit_prep.pl index 97318f2..ea6f8aa 100755 --- a/CVSROOT/commit_prep.pl +++ b/CVSROOT/commit_prep.pl @@ -139,7 +139,7 @@ sub check_version { return (0); } ($id, $rname, $version) = split(' ', substr($line, $pos)); - if ($cvsversion{$filename} == 0) { + if ($cvsversion{$filename} eq '0') { if (!$bareid) { printf($NoName, $filename); return(1); |