summaryrefslogtreecommitdiff
path: root/net/cvsup/files/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'net/cvsup/files/patch-ab')
-rw-r--r--net/cvsup/files/patch-ab19
1 files changed, 0 insertions, 19 deletions
diff --git a/net/cvsup/files/patch-ab b/net/cvsup/files/patch-ab
deleted file mode 100644
index 55dfefd8fee2..000000000000
--- a/net/cvsup/files/patch-ab
+++ /dev/null
@@ -1,19 +0,0 @@
---- 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. *)
- END;
-+ fa.mask := fa.mask * Supported[fa.fileType];
- 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);