From 1e20020bb87dce3aa5cc7aa6e320893b63bf7410 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 26 Nov 2005 07:52:11 +0000 Subject: [PATCH] (ME_DUMMY): "none" and "proc" file systems are dummies too. --- lib/mountlist.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/mountlist.c b/lib/mountlist.c index 4b037cc04f..b957a973fd 100644 --- a/lib/mountlist.c +++ b/lib/mountlist.c @@ -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) -- 2.47.3