X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/5d6bcd4472d7a88adc9be81987f02b58332e432c..9486289ce452ab82ca8b3f16fae8c2ef5247a923:/md4.c diff --git a/md4.c b/md4.c index 35d160d1..a12a5ded 100644 --- a/md4.c +++ b/md4.c @@ -213,7 +213,7 @@ if (count == 0 && MDp->done) return; /* check to see if MD is already done and report error */ if (MDp->done) - { fprintf(FERROR,"\nError: MDupdate MD already done."); return; } + { rprintf(FERROR,"\nError: MDupdate MD already done."); return; } /* Add count to MDp->count */ tmp = count; p = MDp->count; @@ -228,7 +228,7 @@ MDblock(MDp,(unsigned int *)X); } else if (count > 512) /* Check for count too large */ - { fprintf(FERROR,"\nError: MDupdate called with illegal count value %d." + { rprintf(FERROR,"\nError: MDupdate called with illegal count value %d." ,count); return; }