Displaying 1 result from an estimated 1 matches for "patch_orig".
2023 May 16
1
xfer_sum_len type bug
...d check, and it appears to me that the other places xfer_sum_len
is used as a function argument expect a size_t. Assuming I haven't
missed any important details, the fix is simple enough (and does
indeed compile for me where the original does not):
---------8K----------
diff -Naur rsync-3.2.7.patch_orig/checksum.c rsync-3.2.7.patched/checksum.c
--- rsync-3.2.7.patch_orig/checksum.c 2023-05-16 14:17:31.078521657 -0400
+++ rsync-3.2.7.patched/checksum.c 2023-05-16 15:36:44.253892249 -0400
@@ -98,7 +98,7 @@
{ CSUM_MD5, NNI_BUILTIN, "md5", NULL };
struct name_num_item *xfer_sum_nni;...