diff options
author | Rob Landley <rob@landley.net> | 2012-12-31 14:38:13 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-12-31 14:38:13 -0600 |
commit | 090c5c607ec682e5cfc03bbc745cd1ed28d5d6ce (patch) | |
tree | b20960158a610080d44ac64cf6da3d7eded3e9b0 /toys/posix/chgrp.c | |
parent | ef2af2e4d6ddb25cc9b17167e9db5a49b1265abe (diff) | |
download | toybox-090c5c607ec682e5cfc03bbc745cd1ed28d5d6ce.tar.gz |
Make dirtree_handle_callback() start with dirtree_ like the rest of the dirtree functions.
Diffstat (limited to 'toys/posix/chgrp.c')
-rw-r--r-- | toys/posix/chgrp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/chgrp.c b/toys/posix/chgrp.c index 802d8f8f..6e1e16f0 100644 --- a/toys/posix/chgrp.c +++ b/toys/posix/chgrp.c @@ -104,7 +104,7 @@ void chgrp_main(void) for (s=toys.optargs+1; *s; s++) { struct dirtree *new = dirtree_add_node(0, *s, hl); - if (new) handle_callback(new, do_chgrp); + if (new) dirtree_handle_callback(new, do_chgrp); else toys.exitval = 1; } |