From 6aabfd5e30087bb0ffdb6404aa6d650014de2dc0 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Thu, 26 Apr 2001 18:55:29 +0000 Subject: Fix handling of permission addition and removal (e.g., o-r). --- chmod.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'chmod.c') diff --git a/chmod.c b/chmod.c index 742770e90..9139b3f4d 100644 --- a/chmod.c +++ b/chmod.c @@ -29,13 +29,11 @@ #include #include "busybox.h" - -struct stat theMode; - - static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { - if (chmod(fileName, theMode.st_mode) == 0) + if (!parse_mode((char *)junk, &(statbuf->st_mode))) + error_msg_and_die("internal error"); + if (chmod(fileName, statbuf->st_mode) == 0) return (TRUE); perror(fileName); return (FALSE); @@ -43,6 +41,7 @@ static int fileAction(const char *fileName, struct stat *statbuf, void* junk) int chmod_main(int argc, char **argv) { + int i; int opt; int recursiveFlag = FALSE; @@ -59,7 +58,8 @@ int chmod_main(int argc, char **argv) if (argc > optind && argc > 2 && argv[optind]) { /* Parse the specified mode */ - if (parse_mode(argv[optind], &(theMode.st_mode)) == FALSE) { + mode_t mode; + if (parse_mode(argv[optind], &mode) == FALSE) { error_msg_and_die( "unknown mode: %s", argv[optind]); } } else { @@ -67,9 +67,9 @@ int chmod_main(int argc, char **argv) } /* Ok, ready to do the deed now */ - while (++optind < argc) { - if (recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, - fileAction, fileAction, NULL) == FALSE) { + for (i = optind + 1; i < argc; i++) { + if (recursive_action (argv[i], recursiveFlag, FALSE, FALSE, fileAction, + fileAction, argv[optind]) == FALSE) { return EXIT_FAILURE; } } -- cgit v1.2.3