From: Wayne Davison Date: Mon, 30 Jan 2006 17:53:19 +0000 (+0000) Subject: Call the parse_chmod() with its new syntax. X-Git-Tag: v2.6.7pre1~127 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bbe42182df0bc49848ddfa0645d7d424eb8fda1a;p=thirdparty%2Frsync.git 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);