diff options
author | Eric Andersen | 2001-04-26 15:41:51 +0000 |
---|---|---|
committer | Eric Andersen | 2001-04-26 15:41:51 +0000 |
commit | 3c3277f0bda79b66b35e5e965e5340624d29a459 (patch) | |
tree | 4110e6df0e3a6fe01d34bf575cb5c0039def1ec0 /chmod.c | |
parent | 30592a54514ca52253ed5f2eff64684e32d7ff05 (diff) | |
download | busybox-3c3277f0bda79b66b35e5e965e5340624d29a459.zip busybox-3c3277f0bda79b66b35e5e965e5340624d29a459.tar.gz |
As Larry pointed out, this the off by one canbe fixed much more elegantly.
Diffstat (limited to 'chmod.c')
-rw-r--r-- | chmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -66,7 +66,7 @@ int chmod_main(int argc, char **argv) } /* Ok, ready to do the deed now */ - while (optind++ < argc-1) { + while (++optind < argc) { if (recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, fileAction, fileAction, NULL) == FALSE) { return EXIT_FAILURE; |