]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(ME_DUMMY): "none" and "proc" file systems are dummies
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 26 Nov 2005 07:52:11 +0000 (07:52 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 26 Nov 2005 07:52:11 +0000 (07:52 +0000)
too.

lib/mountlist.c

index 4b037cc04f150869cccb422cf4ff8abe76f0d812..b957a973fdf19cfe2fde7712dac024a526864208 100644 (file)
@@ -144,6 +144,8 @@ char *strstr ();
 #ifndef ME_DUMMY
 # define ME_DUMMY(Fs_name, Fs_type)            \
     (strcmp (Fs_type, "autofs") == 0           \
+     || strcmp (Fs_type, "none") == 0          \
+     || strcmp (Fs_type, "proc") == 0          \
      || strcmp (Fs_type, "subfs") == 0         \
      /* for Irix 6.5 */                                \
      || strcmp (Fs_type, "ignore") == 0)