From: Wayne Davison Date: Tue, 1 Jul 2003 21:45:23 +0000 (+0000) Subject: Changed add_exclude*() calls to use the revised arg syntax. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/8645af1d8cf9ad3a543c5b499cbbb287d113522f Changed add_exclude*() calls to use the revised arg syntax. --- diff --git a/options.c b/options.c index abef1cb5..7c39d76b 100644 --- a/options.c +++ b/options.c @@ -21,6 +21,8 @@ #include "rsync.h" #include "popt.h" +extern struct exclude_struct **exclude_list; + int make_backups = 0; /** @@ -508,19 +510,23 @@ int parse_arguments(int *argc, const char ***argv, int frommain) break; case OPT_EXCLUDE: - add_exclude(poptGetOptArg(pc), 0); + add_exclude(&exclude_list, poptGetOptArg(pc), + ADD_EXCLUDE); break; case OPT_INCLUDE: - add_exclude(poptGetOptArg(pc), 1); + add_exclude(&exclude_list, poptGetOptArg(pc), + ADD_INCLUDE); break; case OPT_EXCLUDE_FROM: - add_exclude_file(poptGetOptArg(pc), 1, 0); + add_exclude_file(&exclude_list, poptGetOptArg(pc), + MISSING_FATAL, ADD_EXCLUDE); break; case OPT_INCLUDE_FROM: - add_exclude_file(poptGetOptArg(pc), 1, 1); + add_exclude_file(&exclude_list, poptGetOptArg(pc), + MISSING_FATAL, ADD_INCLUDE); break; case 'h': @@ -909,5 +915,3 @@ char *find_colon(char *s) return p; } - -