aboutsummaryrefslogtreecommitdiff
path: root/net/cvsup
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>2001-09-09 18:00:55 +0000
committerJohn Polstra <jdp@FreeBSD.org>2001-09-09 18:00:55 +0000
commit45c4fa4c5260cb0481031b28abb54acd2e3d0f2e (patch)
tree0d2fc8ec7b47a8711d5e9564647ed0940acccd14 /net/cvsup
parent40e0ba5d5b542db843bfda0d6da6274c35b428ba (diff)
downloadports-45c4fa4c5260cb0481031b28abb54acd2e3d0f2e.tar.gz
ports-45c4fa4c5260cb0481031b28abb54acd2e3d0f2e.zip
Notes
Diffstat (limited to 'net/cvsup')
-rw-r--r--net/cvsup/files/patch-ab13
1 files changed, 11 insertions, 2 deletions
diff --git a/net/cvsup/files/patch-ab b/net/cvsup/files/patch-ab
index ad8fd6f147b7..55dfefd8fee2 100644
--- a/net/cvsup/files/patch-ab
+++ b/net/cvsup/files/patch-ab
@@ -1,5 +1,5 @@
---- suplib/src/FileAttr.m3.orig 1999/02/01 22:44:53 1.25
-+++ suplib/src/FileAttr.m3 2000/01/20 06:10:34 1.26
+--- suplib/src/FileAttr.m3.orig Mon Feb 1 14:44:53 1999
++++ suplib/src/FileAttr.m3 Sun Sep 9 10:51:30 2001
@@ -102,6 +102,7 @@
ELSE
fa.mask := fa.mask + AttrTypes{AttrType.FileType}; (* Always valid. *)
@@ -8,3 +8,12 @@
IF AttrType.ModTime IN fa.mask THEN
fa.stat.st_mtime := ScanInt(t, pos, ModTimeRadix, "modTime");
END;
+@@ -271,7 +272,7 @@
+ ch := Text.GetChar(t, pos);
+ INC(pos);
+ IF ch < '0' OR ch > '9' THEN EXIT END;
+- count := Word.Plus(Word.Times(val, 10), ORD(ch) - ORD('0'));
++ count := Word.Plus(Word.Times(count, 10), ORD(ch) - ORD('0'));
+ END;
+ IF pos >= tLen OR ch # '#' THEN
+ RAISE TokScan.Error("Missing \"#\" in " & what);