From 3364d78b18386623e7af5da18ba1bb0cc6286279 Mon Sep 17 00:00:00 2001 From: Erik Andersen Date: Tue, 28 Mar 2000 00:58:14 +0000 Subject: Yet another installment in the ongoing tar saga -Erik --- chmod_chown_chgrp.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'chmod_chown_chgrp.c') diff --git a/chmod_chown_chgrp.c b/chmod_chown_chgrp.c index e197ee3e8..00c6b349a 100644 --- a/chmod_chown_chgrp.c +++ b/chmod_chown_chgrp.c @@ -60,7 +60,7 @@ static const char chmod_usage[] = "\nOptions:\n\t-R\tchange files and directories recursively.\n"; -static int fileAction(const char *fileName, struct stat *statbuf) +static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { switch (whichApp) { case CHGRP_APP: @@ -169,9 +169,8 @@ int chmod_chown_chgrp_main(int argc, char **argv) fatalError( "%s: too few arguments\n", invocationName); } while (argc-- > 1) { - if (recursiveAction - (*(++argv), recursiveFlag, TRUE, FALSE, fileAction, - fileAction) == FALSE) + if (recursiveAction (*(++argv), recursiveFlag, TRUE, FALSE, + fileAction, fileAction, NULL) == FALSE) exit(FALSE); } exit(TRUE); -- cgit v1.2.3