diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-26 14:56:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-26 14:56:45 +0000 |
commit | 30592a54514ca52253ed5f2eff64684e32d7ff05 (patch) | |
tree | 48eddf51ff5182396709bbd0f28aca99dd3e58a5 /coreutils | |
parent | e55987896a716e483d3a292da4e105ee0280ed45 (diff) |
Fix a silly off-by-one error noticed by Santiago Garcia Mantinan <manty@debian.org>
-Erik
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/chgrp.c | 2 | ||||
-rw-r--r-- | coreutils/chmod.c | 2 | ||||
-rw-r--r-- | coreutils/chown.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c index 0bb1e75c9..83bb19463 100644 --- a/coreutils/chgrp.c +++ b/coreutils/chgrp.c @@ -71,7 +71,7 @@ int chgrp_main(int argc, char **argv) } /* Ok, ready to do the deed now */ - while (optind++ < argc) { + while (optind++ < argc-1) { if (recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, fileAction, fileAction, NULL) == FALSE) { return EXIT_FAILURE; diff --git a/coreutils/chmod.c b/coreutils/chmod.c index 5e12e76b9..f22e5d06f 100644 --- a/coreutils/chmod.c +++ b/coreutils/chmod.c @@ -66,7 +66,7 @@ int chmod_main(int argc, char **argv) } /* Ok, ready to do the deed now */ - while (optind++ < argc) { + while (optind++ < argc-1) { if (recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, fileAction, fileAction, NULL) == FALSE) { return EXIT_FAILURE; diff --git a/coreutils/chown.c b/coreutils/chown.c index ff935a4c0..43d62b1e0 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c @@ -85,7 +85,7 @@ int chown_main(int argc, char **argv) } /* Ok, ready to do the deed now */ - while (optind++ < argc) { + while (optind++ < argc-1) { if (recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, fileAction, fileAction, NULL) == FALSE) { return EXIT_FAILURE; |