mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
du(1) always exit with value zero.
$ du /foobar du: /foobar: No such file or directory $ echo $? 0
This commit is contained in:
parent
d3e65fbc89
commit
5d7128668c
1 changed files with 1 additions and 1 deletions
|
|
@ -204,7 +204,7 @@ main(argc, argv)
|
|||
}
|
||||
if (errno)
|
||||
err(1, "fts_read");
|
||||
exit(0);
|
||||
exit(rval);
|
||||
}
|
||||
|
||||
typedef struct _ID {
|
||||
|
|
|
|||
Loading…
Reference in a new issue