summaryrefslogtreecommitdiff
path: root/lib/savedir.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-06-30 22:40:20 +0000
committerJim Meyering <jim@meyering.net>2004-06-30 22:40:20 +0000
commit1a9ba9e7743921dcd04d7b08ca64b27124028d32 (patch)
tree102dda9ee9c3cd07bc4f764d99db157c908fcf5a /lib/savedir.c
parent7f540c06602fc344ece851bbe80bdbdfe8dcc3a1 (diff)
downloadcoreutils-1a9ba9e7743921dcd04d7b08ca64b27124028d32.tar.xz
Use `file system', not filesystem in a comment.
Diffstat (limited to 'lib/savedir.c')
-rw-r--r--lib/savedir.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/savedir.c b/lib/savedir.c
index 1cab9b6c5..01499a9ae 100644
--- a/lib/savedir.c
+++ b/lib/savedir.c
@@ -1,7 +1,7 @@
/* savedir.c -- save the list of files in a directory in a string
- Copyright 1990, 1997, 1998, 1999, 2000, 2001, 2003 Free Software
- Foundation, Inc.
+ Copyright 1990, 1997, 1998, 1999, 2000, 2001, 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
@@ -89,7 +89,7 @@ savedir (const char *dir)
while ((dp = readdir (dirp)) != NULL)
{
/* Skip "", ".", and "..". "" is returned by at least one buggy
- implementation: Solaris 2.4 readdir on NFS filesystems. */
+ implementation: Solaris 2.4 readdir on NFS file systems. */
char const *entry = dp->d_name;
if (entry[entry[0] != '.' ? 0 : entry[1] != '.' ? 1 : 2] != '\0')
{