From: Eric Andersen Date: Thu, 26 Apr 2001 15:41:51 +0000 (-0000) Subject: As Larry pointed out, this the off by one canbe fixed much more elegantly. X-Git-Tag: 0_52~289 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3c3277f0bda79b66b35e5e965e5340624d29a459;p=oweals%2Fbusybox.git As Larry pointed out, this the off by one canbe fixed much more elegantly. --- diff --git a/chgrp.c b/chgrp.c index 83bb19463..55e22f528 100644 --- a/chgrp.c +++ b/chgrp.c @@ -71,7 +71,7 @@ int chgrp_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; diff --git a/chmod.c b/chmod.c index f22e5d06f..b1d75129b 100644 --- a/chmod.c +++ b/chmod.c @@ -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; diff --git a/chown.c b/chown.c index 43d62b1e0..e714b2d7a 100644 --- a/chown.c +++ b/chown.c @@ -85,7 +85,7 @@ int chown_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; diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c index 83bb19463..55e22f528 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-1) { + while (++optind < argc) { 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 f22e5d06f..b1d75129b 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-1) { + while (++optind < argc) { 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 43d62b1e0..e714b2d7a 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-1) { + while (++optind < argc) { if (recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, fileAction, fileAction, NULL) == FALSE) { return EXIT_FAILURE;