diff options
Diffstat (limited to 'lib/savedir.c')
-rw-r--r-- | lib/savedir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/savedir.c b/lib/savedir.c index 0ab41035..e2c015af 100644 --- a/lib/savedir.c +++ b/lib/savedir.c @@ -98,7 +98,7 @@ savedir (const char *dir, off_t name_size, struct exclude *included_patterns, while ((dp = readdir (dirp)) != NULL) { - /* Skip "." and ".." (some NFS filesystems' directories lack them). */ + /* Skip "." and ".." (some NFS file systems' directories lack them). */ if (dp->d_name[0] != '.' || (dp->d_name[1] != '\0' && (dp->d_name[1] != '.' || dp->d_name[2] != '\0'))) @@ -116,7 +116,7 @@ savedir (const char *dir, off_t name_size, struct exclude *included_patterns, && excluded_file_name (excluded_patterns, dp->d_name)) continue; } - + if ( excluded_directory_patterns && isdir1 (dir, dp->d_name) ) { |