]> Dogcows Code - chaz/tar/blobdiff - src/create.c
* src/compare.c (diff_dumpdir): Omit useless 'stat'.
[chaz/tar] / src / create.c
index 9839e1fdc81a2d0e5a4a08e978c96f3540fa6566..745796c2b2bd253e486ed6f6bdbb4306b5351792 100644 (file)
@@ -785,9 +785,9 @@ start_header (struct tar_stat_info *st)
        . . . . . . . . .   9 = Omron UNIOS-B 4.3BSD 1.60Beta
 
             . = works
-            # = ``impossible file type''
+            # = "impossible file type"
 
-     The following mask for old archive removes the `#'s in column 4
+     The following mask for old archive removes the '#'s in column 4
      above, thus making GNU tar both a universal donor and a universal
      acceptor for Paul's test.  */
 
@@ -1051,7 +1051,7 @@ dump_regular_file (int fd, struct tar_stat_info *st)
            memset (blk->buffer + size_left, 0, BLOCKSIZE - count);
        }
 
-      count = (fd <= 0) ? bufsize : safe_read (fd, blk->buffer, bufsize);
+      count = (fd <= 0) ? bufsize : blocking_read (fd, blk->buffer, bufsize);
       if (count == SAFE_READ_ERROR)
        {
          read_diag_details (st->orig_file_name,
This page took 0.026441 seconds and 4 git commands to generate.