Re: xfer_sum_len type bug

2023-05-26 Thread Derek Martin via rsync
On Fri, May 26, 2023 at 08:34:20AM -0700, Wayne Davison wrote: > On Tue, May 16, 2023 at 2:03 PM Derek Martin wrote: > > > This appears to be because of a type mismatch between xfer_sum_len > > (declared as [signed] int) and the third arugment to memset, whose > > function prototype is (from the

Re: xfer_sum_len type bug

2023-05-26 Thread Wayne Davison via rsync
On Tue, May 16, 2023 at 2:03 PM Derek Martin wrote: > This appears to be because of a type mismatch between xfer_sum_len > (declared as [signed] int) and the third arugment to memset, whose > function prototype is (from the man page): > >void *memset(void *s, int c, size_t n); > If that