]> Dogcows Code - chaz/tar/commitdiff
(is_regular_file): Don't succeed on files that we can't access due to
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Jul 1999 13:03:58 +0000 (13:03 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Jul 1999 13:03:58 +0000 (13:03 +0000)
permissions problems.
(open_archive): Fix wording on fatal error message.
Don't bother to stat /dev/null if the archive is not a character
special device.

src/buffer.c

index bdb467cd0e82bb5386216355b1d7f5e7de713779..c8b10b06a7b73f76bcc0a0b7a21f0ad847570fa8 100644 (file)
@@ -307,13 +307,10 @@ is_regular_file (const char *name)
 {
   struct stat stbuf;
 
-  if (stat (name, &stbuf) < 0)
-    return 1;
-
-  if (S_ISREG (stbuf.st_mode))
-    return 1;
-
-  return 0;
+  if (stat (name, &stbuf) == 0)
+    return S_ISREG (stbuf.st_mode);
+  else
+    return errno == ENOENT;
 }
 
 static ssize_t
@@ -808,8 +805,7 @@ open_archive (enum access_mode access)
 
       if (backed_up_flag)
        undo_last_backup ();
-      FATAL_ERROR ((0, saved_errno, _("Cannot open %s"),
-                   archive_name_array[0]));
+      FATAL_ERROR ((0, saved_errno, "%s", archive_name_array[0]));
     }
 
 #if !MSDOS
@@ -822,8 +818,9 @@ open_archive (enum access_mode access)
     dev_null_output =
       (strcmp (archive_name_array[0], dev_null) == 0
        || (! _isrmt (archive)
-          && stat (dev_null, &dev_null_stat) == 0
           && S_ISCHR (archive_stat.st_mode)
+          && stat (dev_null, &dev_null_stat) == 0
+          && S_ISCHR (dev_null_stat.st_mode)
           && archive_stat.st_rdev == dev_null_stat.st_rdev));
   }
 
This page took 0.025024 seconds and 4 git commands to generate.