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.. -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
