Got rid of double-fuzz hunk.
[rsync/rsync-patches.git] / ignore-case.diff
CommitLineData
992633a5
WD
1This adds the --ignore-case option, which makes rsync compare filenames
2in a case-insensitive manner.
8a524ae0 3
9a7eef96
WD
4--- old/flist.c
5+++ new/flist.c
9c657c9f
WD
6@@ -37,6 +37,7 @@ extern int am_sender;
7 extern int do_progress;
8 extern int always_checksum;
9 extern int module_id;
10+extern int ignore_case;
11 extern int ignore_errors;
12 extern int numeric_ids;
13 extern int recurse;
9a7eef96 14@@ -1801,7 +1802,14 @@ int f_name_cmp(struct file_struct *f1, s
9c657c9f
WD
15 return type1 == t_PATH ? 1 : -1;
16
17 while (1) {
18- if ((dif = (int)*c1++ - (int)*c2++) != 0)
19+ if (ignore_case) {
20+ uchar ch1, ch2;
21+ ch1 = islower(*c1) ? toupper(*c1) : *c1;
22+ ch2 = islower(*c2) ? toupper(*c2) : *c2;
23+ c1++, c2++;
24+ if ((dif = (int)ch1 - (int)ch2) != 0)
25+ break;
26+ } else if ((dif = (int)*c1++ - (int)*c2++) != 0)
27 break;
28 if (!*c1) {
29 switch (state1) {
9a7eef96
WD
30--- old/lib/wildmatch.c
31+++ new/lib/wildmatch.c
992633a5
WD
32@@ -53,6 +53,8 @@
33 #define ISUPPER(c) (ISASCII(c) && isupper(c))
34 #define ISXDIGIT(c) (ISASCII(c) && isxdigit(c))
35
36+extern int ignore_case;
37+
38 #ifdef WILD_TEST_ITERATIONS
39 int wildmatch_iteration_count;
40 #endif
66e2df0e 41@@ -72,6 +74,8 @@ static int dowild(const uchar *p, const
ffadcb36
WD
42 for ( ; (p_ch = *p) != '\0'; text++, p++) {
43 int matched, special;
44 uchar t_ch, prev_ch;
45+ if (ignore_case && ISUPPER(p_ch))
46+ p_ch = tolower(p_ch);
66e2df0e
WD
47 while ((t_ch = *text) == '\0') {
48 if (*a == NULL) {
49 if (p_ch != '*')
50@@ -288,10 +292,14 @@ static const uchar *trailing_N_elements(
ffadcb36
WD
51 int wildmatch(const char *pattern, const char *text)
52 {
66e2df0e 53 static const uchar *nomore[1]; /* A NULL pointer. */
ffadcb36
WD
54+ int ret;
55 #ifdef WILD_TEST_ITERATIONS
56 wildmatch_iteration_count = 0;
57 #endif
66e2df0e 58- return dowild((const uchar*)pattern, (const uchar*)text, nomore) == TRUE;
ffadcb36 59+ force_lower_case = ignore_case;
66e2df0e 60+ ret = dowild((const uchar*)pattern, (const uchar*)text, nomore) == TRUE;
ffadcb36 61+ force_lower_case = 0;
66e2df0e 62+ return ret;
ffadcb36
WD
63 }
64
65 /* Match the "pattern" against the forced-to-lower-case "text" string. */
9a7eef96
WD
66--- old/options.c
67+++ new/options.c
afcb578c 68@@ -111,6 +111,7 @@ OFF_T max_size = 0;
56208f7b 69 OFF_T min_size = 0;
5f7bb027
WD
70 int ignore_errors = 0;
71 int modify_window = 0;
72+int ignore_case = 0;
73 int blocking_io = -1;
74 int checksum_seed = 0;
f6c3b300 75 int inplace = 0;
afcb578c 76@@ -350,6 +351,7 @@ void usage(enum logcode F)
a7219d20
WD
77 rprintf(F," --include-from=FILE read include patterns from FILE\n");
78 rprintf(F," --files-from=FILE read list of source-file names from FILE\n");
896871f8 79 rprintf(F," -0, --from0 all *-from/filter files are delimited by 0s\n");
5f7bb027 80+ rprintf(F," --ignore-case ignore case when comparing filenames\n");
2b06a19d 81 rprintf(F," --address=ADDRESS bind address for outgoing socket to daemon\n");
37da98ae 82 rprintf(F," --port=PORT specify double-colon alternate port number\n");
9a7eef96 83 rprintf(F," --sockopts=OPTIONS specify custom TCP options\n");
afcb578c 84@@ -503,6 +505,7 @@ static struct poptOption long_options[]
edea1111
WD
85 {"only-write-batch", 0, POPT_ARG_STRING, &batch_name, OPT_ONLY_WRITE_BATCH, 0, 0 },
86 {"files-from", 0, POPT_ARG_STRING, &files_from, 0, 0, 0 },
87 {"from0", '0', POPT_ARG_NONE, &eol_nulls, 0, 0, 0},
5f7bb027 88+ {"ignore-case", 0, POPT_ARG_NONE, &ignore_case, 0, 0, 0 },
edea1111
WD
89 {"numeric-ids", 0, POPT_ARG_NONE, &numeric_ids, 0, 0, 0 },
90 {"timeout", 0, POPT_ARG_INT, &io_timeout, 0, 0, 0 },
91 {"rsh", 'e', POPT_ARG_STRING, &shell_cmd, 0, 0, 0 },
afcb578c 92@@ -1657,6 +1660,9 @@ void server_options(char **args,int *arg
5f7bb027
WD
93 args[ac++] = arg;
94 }
7628f156 95
5f7bb027
WD
96+ if (ignore_case)
97+ args[ac++] = "--ignore-case";
7628f156 98+
afbebe13 99 if (partial_dir && am_sender) {
9a7eef96 100 if (partial_dir != tmp_partialdir) {
27a7053c 101 args[ac++] = "--partial-dir";
9a7eef96
WD
102--- old/wildtest.c
103+++ new/wildtest.c
992633a5
WD
104@@ -16,6 +16,7 @@ int fnmatch_errors = 0;
105 #endif
106
107 int wildmatch_errors = 0;
108+int ignore_case = 0;
109
110 typedef char bool;
5f7bb027 111