Blame SOURCES/star-1.5.1-crc.patch

646d41
diff --git a/star/cpiohdr.c b/star/cpiohdr.c
646d41
index 9c7a774..2785661 100644
646d41
--- a/star/cpiohdr.c
646d41
+++ b/star/cpiohdr.c
646d41
@@ -536,7 +536,9 @@ cpio_checkswab(ptb)
646d41
 }
646d41
 
646d41
 /*
646d41
- * This simple sum is used for the SYSvr4 file content CRC
646d41
+ * This simple sum is used for the SYSvr4 file content checksum.  This is
646d41
+ * implemented like Sum32 algorithm.
646d41
+ *
646d41
  * Use Int32_t to implement the same behavior as the AT&T cpio command.
646d41
  */
646d41
 LOCAL Int32_t
646d41
diff --git a/star/star.1 b/star/star.1
646d41
index 95b202c..a931a6f 100644
646d41
--- a/star/star.1
646d41
+++ b/star/star.1
646d41
@@ -913,9 +913,9 @@ archive format because of its limited portability.
646d41
 .B crc
646d41
 This format is similar to the
646d41
 .B asc
646d41
-cpio format but in addition uses a simple byte based checksum called
646d41
+cpio format but in addition uses a simple byte based checksum called here as
646d41
 .BR CRC .
646d41
-Try to avoid the
646d41
+This algorithm is simple Sum32 -- not a polynomial CRC.  Try to avoid the
646d41
 .B crc
646d41
 archive format because of its limited portability.
646d41