X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/087bf010d2cd89848181e49b4ecdfd29a66353e9..e42c9458c2f1e3a78d6d45e99741d6edb38fc0cc:/log.c diff --git a/log.c b/log.c index 068b5a93..8be3605a 100644 --- a/log.c +++ b/log.c @@ -23,6 +23,7 @@ */ #include "rsync.h" + /* this is the rsync debugging function. Call it with FINFO or FERROR */ void rprintf(int fd, const char *format, ...) { @@ -33,13 +34,7 @@ void rprintf(int fd, const char *format, ...) extern int am_daemon; va_start(ap, format); - -#if HAVE_VSNPRINTF - len = vsnprintf(buf, sizeof(buf)-1, format, ap); -#else - vsprintf(buf, format, ap); - len = strlen(buf); -#endif + len = vslprintf(buf, sizeof(buf)-1, format, ap); va_end(ap); if (len < 0) exit_cleanup(1);