summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-06-30 22:39:13 +0000
committerJim Meyering <jim@meyering.net>2004-06-30 22:39:13 +0000
commitc56f9d7cb0c5602bd98b8f5e4e537c7a6670cd22 (patch)
treecc10c98d8287b0e93b0b6505cc0533d9166de689 /lib
parent49d4a73415159c186681df46e684d3190371ea8f (diff)
downloadcoreutils-c56f9d7cb0c5602bd98b8f5e4e537c7a6670cd22.tar.xz
Use `file system', not filesystem in a comment.
Diffstat (limited to 'lib')
-rw-r--r--lib/euidaccess.c6
-rw-r--r--lib/fsusage.c6
-rw-r--r--lib/fsusage.h7
-rw-r--r--lib/getloadavg.c4
4 files changed, 12 insertions, 11 deletions
diff --git a/lib/euidaccess.c b/lib/euidaccess.c
index 772cf6f1f..bc4d34cde 100644
--- a/lib/euidaccess.c
+++ b/lib/euidaccess.c
@@ -1,7 +1,7 @@
/* euidaccess -- check if effective user id can access file
- Copyright (C) 1990, 1991, 1995, 1998, 2000, 2003 Free Software
- Foundation, Inc.
+ Copyright (C) 1990, 1991, 1995, 1998, 2000, 2003, 2004 Free
+ Software Foundation, Inc.
This file is part of the GNU C Library.
@@ -133,7 +133,7 @@ static int have_ids;
otherwise, return -1 and set `errno' to EACCESS.
Like access, except that it uses the effective user and group
id's instead of the real ones, and it does not check for read-only
- filesystem, text busy, etc. */
+ file system, text busy, etc. */
int
euidaccess (const char *path, int mode)
diff --git a/lib/fsusage.c b/lib/fsusage.c
index d92602936..7868a66b6 100644
--- a/lib/fsusage.c
+++ b/lib/fsusage.c
@@ -1,6 +1,6 @@
-/* fsusage.c -- return space usage of mounted filesystems
+/* fsusage.c -- return space usage of mounted file systems
- Copyright (C) 1991, 1992, 1996, 1998, 1999, 2002, 2003 Free
+ Copyright (C) 1991, 1992, 1996, 1998, 1999, 2002, 2003, 2004 Free
Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
@@ -102,7 +102,7 @@ int statvfs ();
#define PROPAGATE_TOP_BIT(x) ((x) | ~ (EXTRACT_TOP_BIT (x) - 1))
/* Fill in the fields of FSP with information about space usage for
- the filesystem on which PATH resides.
+ the file system on which PATH resides.
DISK is the device on which PATH is mounted, for space-getting
methods that need to know it.
Return 0 if successful, -1 if not. When returning -1, ensure that
diff --git a/lib/fsusage.h b/lib/fsusage.h
index e2cbbf127..060d957e9 100644
--- a/lib/fsusage.h
+++ b/lib/fsusage.h
@@ -1,6 +1,7 @@
-/* fsusage.h -- declarations for filesystem space usage info
+/* fsusage.h -- declarations for file system space usage info
- Copyright (C) 1991, 1992, 1997, 2003 Free Software Foundation, Inc.
+ Copyright (C) 1991, 1992, 1997, 2003, 2004 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
@@ -16,7 +17,7 @@
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-/* Space usage statistics for a filesystem. Blocks are 512-byte. */
+/* Space usage statistics for a file system. Blocks are 512-byte. */
#if !defined FSUSAGE_H_
# define FSUSAGE_H_
diff --git a/lib/getloadavg.c b/lib/getloadavg.c
index ed079b2ec..ab10adae9 100644
--- a/lib/getloadavg.c
+++ b/lib/getloadavg.c
@@ -70,9 +70,9 @@
UMAX4_3
VMS
WINDOWS32 No-op for Windows95/NT.
- __linux__ Linux: assumes /proc filesystem mounted.
+ __linux__ Linux: assumes /proc file system mounted.
Support from Michael K. Johnson.
- __NetBSD__ NetBSD: assumes /kern filesystem mounted.
+ __NetBSD__ NetBSD: assumes /kern file system mounted.
In addition, to avoid nesting many #ifdefs, we internally set
LDAV_DONE to indicate that the load average has been computed.