From 30592a54514ca52253ed5f2eff64684e32d7ff05 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 26 Apr 2001 14:56:45 +0000 Subject: Fix a silly off-by-one error noticed by Santiago Garcia Mantinan -Erik --- coreutils/chgrp.c | 2 +- coreutils/chmod.c | 2 +- coreutils/chown.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'coreutils') diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c index 0bb1e75..83bb194 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 5e12e76..f22e5d0 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 ff935a4..43d62b1 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; -- cgit v1.1