Fixed a failing hunk.
[rsync/rsync-patches.git] / ignore-case.diff
index 3e0cb63..68ae779 100644 (file)
@@ -35,25 +35,25 @@ in a case-insensitive manner.
          case '?':
            /* Match anything but '/'. */
            if (*text == '/')
---- orig/options.c     2004-10-14 17:11:40
+--- orig/options.c     2005-01-01 21:11:00
 +++ options.c  2004-10-14 17:22:51
-@@ -92,6 +92,7 @@ int opt_ignore_existing = 0;
int max_delete = 0;
+@@ -94,6 +94,7 @@ int max_delete = 0;
OFF_T max_size = 0;
  int ignore_errors = 0;
  int modify_window = 0;
 +int ignore_case = 0;
  int blocking_io = -1;
  int checksum_seed = 0;
  int inplace = 0;
-@@ -288,6 +289,7 @@ void usage(enum logcode F)
+@@ -297,6 +298,7 @@ void usage(enum logcode F)
    rprintf(F,"     --include-from=FILE     don't exclude patterns listed in FILE\n");
    rprintf(F,"     --files-from=FILE       read FILE for list of source-file names\n");
    rprintf(F," -0, --from0                 all *-from file lists are delimited by nulls\n");
 +  rprintf(F,"     --ignore-case           ignore case when comparing filenames\n");
    rprintf(F,"     --version               print version number\n");
+   rprintf(F,"     --port=PORT             specify double-colon alternate port number\n");
    rprintf(F,"     --blocking-io           use blocking I/O for the remote shell\n");
-   rprintf(F,"     --no-blocking-io        turn off --blocking-io\n");
-@@ -336,6 +338,7 @@ static struct poptOption long_options[] 
+@@ -347,6 +349,7 @@ static struct poptOption long_options[] 
    {"include",          0,  POPT_ARG_STRING, 0, OPT_INCLUDE, 0, 0 },
    {"exclude-from",     0,  POPT_ARG_STRING, 0, OPT_EXCLUDE_FROM, 0, 0 },
    {"include-from",     0,  POPT_ARG_STRING, 0, OPT_INCLUDE_FROM, 0, 0 },
@@ -61,7 +61,7 @@ in a case-insensitive manner.
    {"safe-links",       0,  POPT_ARG_NONE,   &safe_symlinks, 0, 0, 0 },
    {"help",            'h', POPT_ARG_NONE,   0, 'h', 0, 0 },
    {"backup",          'b', POPT_ARG_NONE,   &make_backups, 0, 0, 0 },
-@@ -1103,6 +1106,9 @@ void server_options(char **args,int *arg
+@@ -1182,6 +1185,9 @@ void server_options(char **args,int *arg
                args[ac++] = arg;
        }