]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Use `file system', not filesystem in a comment.
authorJim Meyering <jim@meyering.net>
Wed, 30 Jun 2004 22:40:20 +0000 (22:40 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 30 Jun 2004 22:40:20 +0000 (22:40 +0000)
lib/savedir.c

index 1cab9b6c5dab6063e09c29a0059349c325c1210a..01499a9ae288143248abed39fd9f8b32914ee2ce 100644 (file)
@@ -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')
        {