summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-03-18 17:04:04 +0000
committerJim Meyering <jim@meyering.net>2003-03-18 17:04:04 +0000
commit5f4059d425bb377bd6ea78f55618f21badb1e802 (patch)
tree05e468ee4aa1657b5f6c61f4a897c7aa374f2749 /lib
parent8be6d87354945e3fbc5a4c4b9eeb424e945bd188 (diff)
downloadcoreutils-5f4059d425bb377bd6ea78f55618f21badb1e802.tar.xz
undo last change
Diffstat (limited to 'lib')
-rw-r--r--lib/mountlist.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/mountlist.h b/lib/mountlist.h
index a19f5b774..8aab8ff95 100644
--- a/lib/mountlist.h
+++ b/lib/mountlist.h
@@ -1,5 +1,5 @@
/* mountlist.h -- declarations for list of mounted filesystems
- Copyright (C) 1991, 1992, 1998, 2000-2003 Free Software Foundation, Inc.
+ Copyright (C) 1991, 1992, 1998, 2000-2002 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -49,12 +49,10 @@ struct mount_entry *read_filesystem_list PARAMS ((int need_fs_type));
#ifndef ME_REMOTE
/* A file system is `remote' if its Fs_name contains a `:'
- or if (it is of type smbfs and its Fs_name starts with `//')
- or if Fs_type starts with `nfs'. */
+ or if (it is of type smbfs and its Fs_name starts with `//'). */
# define ME_REMOTE(Fs_name, Fs_type) \
(strchr ((Fs_name), ':') != 0 \
|| ((Fs_name)[0] == '/' \
&& (Fs_name)[1] == '/' \
- && STREQ (Fs_type, "smbfs")) \
- || (strncasecmp (Fs_type, "nfs", 3) == 0))
+ && STREQ (Fs_type, "smbfs")))
#endif