summaryrefslogtreecommitdiff
path: root/src/du.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-08-31 06:46:39 +0000
committerJim Meyering <jim@meyering.net>2001-08-31 06:46:39 +0000
commit0e18bbb519a3bf01d272f77c22b283b122cb04d6 (patch)
tree649ed024cf99117dc2d07419d7d0b1a7649f911d /src/du.c
parent473f37a6c962f88985f701f4f3474ddf6ce58086 (diff)
downloadcoreutils-0e18bbb519a3bf01d272f77c22b283b122cb04d6.tar.xz
(count_entry, main): Reflect changes to the exclude functions.
Diffstat (limited to 'src/du.c')
-rw-r--r--src/du.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/du.c b/src/du.c
index ab47a620f..f4b483a22 100644
--- a/src/du.c
+++ b/src/du.c
@@ -577,7 +577,7 @@ count_entry (const char *ent, int top, dev_t last_dev, int depth)
for (namep = name_space; *namep; namep += strlen (namep) + 1)
{
- if (!excluded_filename (exclude, namep, 0))
+ if (!excluded_filename (exclude, namep))
{
str_concatc (path, namep);
size += count_entry (namep, 0, dir_dev, depth + 1);
@@ -739,12 +739,13 @@ main (int argc, char **argv)
break;
case 'X':
- if (add_exclude_file (add_exclude, exclude, optarg, '\n') != 0)
+ if (add_exclude_file (add_exclude, exclude, optarg,
+ EXCLUDE_WILDCARDS, '\n'))
error (1, errno, "%s", quote (optarg));
break;
case EXCLUDE_OPTION:
- add_exclude (exclude, optarg);
+ add_exclude (exclude, optarg, EXCLUDE_WILDCARDS);
break;
case BLOCK_SIZE_OPTION: