Wayne, I noticed that rsync's "*deleting" itemize output needs two trailing spaces now that the other itemize codes are 11 characters wide. See the patch below. Matt ------------- Index: log.c ==================================================================RCS file: /cvsroot/rsync/log.c,v retrieving revision 1.179 diff -u -r1.179 log.c --- log.c 10 Jul 2007 13:55:49 -0000 1.179 +++ log.c 7 Aug 2007 19:50:25 -0000 @@ -612,7 +612,7 @@ break; case 'i': if (iflags & ITEM_DELETED) { - n = "*deleting"; + n = "*deleting "; break; } n = c = buf2 + MAXPATHLEN - 32; -------------
Hi, I noticed you guys knowns the rsync source code: Could you please tellme what patch to apply in order to solve this long time issue I have: http://www.interopcommunity.com/tm.aspx?m=12450&mpage=1&key=ア thanks in advance Aldo Matt McCutchen wrote:> Wayne, > > I noticed that rsync's "*deleting" itemize output needs two trailing > spaces now that the other itemize codes are 11 characters wide. See > the patch below. > > Matt > > ------------- > Index: log.c > ==================================================================> RCS file: /cvsroot/rsync/log.c,v > retrieving revision 1.179 > diff -u -r1.179 log.c > --- log.c 10 Jul 2007 13:55:49 -0000 1.179 > +++ log.c 7 Aug 2007 19:50:25 -0000 > @@ -612,7 +612,7 @@ > break; > case 'i': > if (iflags & ITEM_DELETED) { > - n = "*deleting"; > + n = "*deleting "; > break; > } > n = c = buf2 + MAXPATHLEN - 32; > ------------- >-- Live as a tortoise. and rate my mullet: http://www.ratemymullet.com/
On Fri, Aug 31, 2007 at 03:08:49PM -0400, Matt McCutchen wrote:> On 8/7/07, Matt McCutchen <hashproduct+rsync@gmail.com> wrote: > > I noticed that rsync's "*deleting" itemize output needs two trailing > > spaces now that the other itemize codes are 11 characters wide. See > > the patch below. > > Do you disagree with this patch, or are you just busy?I had left it unaligned on purpose. I haven't decided if I will change that or not yet. ..wayne..