diff options
author | Rob Landley <rob@landley.net> | 2012-12-06 15:13:30 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-12-06 15:13:30 -0600 |
commit | 3162c27324bb6a26cfb9e47b266d2a3ee451f47b (patch) | |
tree | 0aa4d5cd7af9f9f3398ade523bddcfd2110fea57 /toys/posix/ls.c | |
parent | 5434415c11af6ea91f61fe2e873cfc29afc5657f (diff) | |
download | toybox-3162c27324bb6a26cfb9e47b266d2a3ee451f47b.tar.gz |
Have dirtree_add_node() set parent so error message can provide full path.
Diffstat (limited to 'toys/posix/ls.c')
-rw-r--r-- | toys/posix/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/ls.c b/toys/posix/ls.c index 6bb41521..cd881b05 100644 --- a/toys/posix/ls.c +++ b/toys/posix/ls.c @@ -436,7 +436,7 @@ void ls_main(void) // Non-absolute paths are relative to current directory. TT.files = dirtree_add_node(0, 0, 0); for (s = *toys.optargs ? toys.optargs : noargs; *s; s++) { - dt = dirtree_add_node(AT_FDCWD, *s, + dt = dirtree_add_node(0, *s, (toys.optflags & (FLAG_L|FLAG_H|FLAG_l))^FLAG_l); if (!dt) { |