X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmountlist.h;h=8aab8ff9599d8f8d6393641ffb8a44db2a26294d;hb=2bf674b2395b6aff54eff7928d24f2995c37c28e;hp=8acec77fb3b95982d6cf45c948fe2607cc307f71;hpb=d610b32d9e6ba44bc17a6cd60bdeda8b7c103e1b;p=gnulib.git diff --git a/lib/mountlist.h b/lib/mountlist.h index 8acec77fb..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, 2001 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 @@ -39,12 +39,14 @@ struct mount_entry *read_filesystem_list PARAMS ((int need_fs_type)); #ifndef ME_DUMMY # define ME_DUMMY(Fs_name, Fs_type) \ - (!strcmp (Fs_type, "auto") \ - || !strcmp (Fs_type, "autofs") \ + (!strcmp (Fs_type, "autofs") \ /* for Irix 6.5 */ \ || !strcmp (Fs_type, "ignore")) #endif +#undef STREQ +#define STREQ(a, b) (strcmp ((a), (b)) == 0) + #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 `//'). */