rsync 2.6.6 on HP-UX 11.11 does not show transfer informations

Wayne Davison wayned at samba.org
Sun Nov 13 15:52:50 GMT 2005


On Sat, Nov 12, 2005 at 01:14:23PM +0100, Rogner, Jens wrote:
> sent %f bytes  received %f bytes  %f bytes/sec
> total size is %f  speedup is %f

Rsync uses double-floats to output its 64-bit numbers since using %lld
is not portable.  So, it looks like your C-library (specifically the
vsnprintf() function) is changing directives like %.0f into a visible
"%f".  You should be able to just edit your config.h and comment-out
the HAVE_VSNPRINTF define, allowing rsync to use its own version.

..wayne..


More information about the rsync mailing list