preparing for release of 1.7.3
[rsync/rsync.git] / main.c
diff --git a/main.c b/main.c
index 41d8a6b..cbda40e 100644 (file)
--- a/main.c
+++ b/main.c
@@ -92,14 +92,14 @@ static void report(int f)
   }
 
 #if HAVE_LONGLONG
-  printf("wrote %lld bytes  read %lld bytes  %g bytes/sec\n",
+  printf("wrote %lld bytes  read %lld bytes  %.2f bytes/sec\n",
         (long long)out,(long long)in,(in+out)/(0.5 + (t-starttime)));
-  printf("total size is %lld  speedup is %g\n",
+  printf("total size is %lld  speedup is %.2f\n",
         (long long)tsize,(1.0*tsize)/(in+out));
 #else
-  printf("wrote %ld bytes  read %ld bytes  %g bytes/sec\n",
+  printf("wrote %ld bytes  read %ld bytes  %.2f bytes/sec\n",
         (long)out,(long)in,(in+out)/(0.5 + (t-starttime)));
-  printf("total size is %ld  speedup is %g\n",
+  printf("total size is %ld  speedup is %.2f\n",
         (long)tsize,(1.0*tsize)/(in+out));
 #endif
 }
@@ -296,7 +296,7 @@ static char *get_local_name(struct file_list *flist,char *name)
   if (!name) 
     return NULL;
 
-  if (mkdir(name,0777 & ~orig_umask) != 0) {
+  if (do_mkdir(name,0777 & ~orig_umask) != 0) {
     fprintf(FERROR,"mkdir %s : %s (1)\n",name,strerror(errno));
     exit_cleanup(1);
   } else {