diff options
author | John Polstra <jdp@FreeBSD.org> | 2000-02-20 18:32:00 +0000 |
---|---|---|
committer | John Polstra <jdp@FreeBSD.org> | 2000-02-20 18:32:00 +0000 |
commit | a0a2c9775a770e5d79421a41cbdb48a086ab4c94 (patch) | |
tree | 96b4e0156562d0e4a008b3e4079c2420331b3389 /net/cvsup | |
parent | 3cf9d396da8cb189c08024ec6343b5be2f74f792 (diff) | |
download | ports-a0a2c9775a770e5d79421a41cbdb48a086ab4c94.tar.gz ports-a0a2c9775a770e5d79421a41cbdb48a086ab4c94.zip |
Add patch to ignore unsupported file attributes. It has no effect
except in obscure scenarios involving switching versions of CVSup.
Notes
Notes:
svn path=/head/; revision=26044
Diffstat (limited to 'net/cvsup')
-rw-r--r-- | net/cvsup/files/patch-ab | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/cvsup/files/patch-ab b/net/cvsup/files/patch-ab new file mode 100644 index 000000000000..ad8fd6f147b7 --- /dev/null +++ b/net/cvsup/files/patch-ab @@ -0,0 +1,10 @@ +--- 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 +@@ -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; |