Rogner, Jens
2005-Nov-12 12:14 UTC
rsync 2.6.6 on HP-UX 11.11 does not show transfer informations
Hello, I just installed rsync 2.6.6. on a HP-UX 11.11 machine. Rsync is working but does give weird transfer informations: sent %f bytes received %f bytes %f bytes/sec total size is %f speedup is %f What I did wrong ? Greetings Jens
Wayne Davison
2005-Nov-13 15:53 UTC
rsync 2.6.6 on HP-UX 11.11 does not show transfer informations
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 %fRsync 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..