From bbe42182df0bc49848ddfa0645d7d424eb8fda1a Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 30 Jan 2006 17:53:19 +0000 Subject: [PATCH] Call the parse_chmod() with its new syntax. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.c b/options.c index ac7da706..266a2a85 100644 --- a/options.c +++ b/options.c @@ -1042,7 +1042,7 @@ int parse_arguments(int *argc, const char ***argv, int frommain) case OPT_CHMOD: arg = poptGetOptArg(pc); - if (!(chmod_modes = parse_chmod(arg, chmod_modes))) { + if (!parse_chmod(arg, &chmod_modes)) { snprintf(err_buf, sizeof err_buf, "Invalid argument passed to --chmod (%s)\n", arg); -- 2.34.1