From: Wayne Davison Date: Mon, 30 Jan 2006 17:53:19 +0000 (+0000) Subject: Call the parse_chmod() with its new syntax. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/bbe42182df0bc49848ddfa0645d7d424eb8fda1a Call the parse_chmod() with its new syntax. --- 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);