Tweaked the debug output for per-dir CVS rules.
[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
36bbf3d1 4--- orig/lib/wildmatch.c 2005-01-28 21:01:21
992633a5
WD
5+++ lib/wildmatch.c 2004-08-13 16:43:27
6@@ -53,6 +53,8 @@
7 #define ISUPPER(c) (ISASCII(c) && isupper(c))
8 #define ISXDIGIT(c) (ISASCII(c) && isxdigit(c))
9
10+extern int ignore_case;
11+
12 #ifdef WILD_TEST_ITERATIONS
13 int wildmatch_iteration_count;
14 #endif
a7219d20 15@@ -76,9 +78,19 @@ static int domatch(const uchar *p, const
13bed3dd
WD
16 ch = *++p;
17 /* FALLTHROUGH */
18 default:
19- if (*text != ch)
992633a5
WD
20- return FALSE;
21- continue;
22+ if (*text == ch)
23+ continue;
24+ if (ignore_case) {
25+ if (ISUPPER(*text)) {
26+ if (tolower(*text) == ch)
27+ continue;
28+ }
29+ else if (ISUPPER(ch)) {
30+ if (*text == tolower(ch))
31+ continue;
13bed3dd 32+ }
13bed3dd 33+ }
992633a5 34+ return FALSE;
13bed3dd
WD
35 case '?':
36 /* Match anything but '/'. */
992633a5 37 if (*text == '/')
91f798a7 38--- orig/options.c 2005-11-12 20:13:05
edea1111 39+++ options.c 2005-10-14 19:19:18
91f798a7 40@@ -105,6 +105,7 @@ OFF_T max_size = 0;
56208f7b 41 OFF_T min_size = 0;
5f7bb027
WD
42 int ignore_errors = 0;
43 int modify_window = 0;
44+int ignore_case = 0;
45 int blocking_io = -1;
46 int checksum_seed = 0;
f6c3b300 47 int inplace = 0;
91f798a7 48@@ -342,6 +343,7 @@ void usage(enum logcode F)
a7219d20
WD
49 rprintf(F," --include-from=FILE read include patterns from FILE\n");
50 rprintf(F," --files-from=FILE read list of source-file names from FILE\n");
896871f8 51 rprintf(F," -0, --from0 all *-from/filter files are delimited by 0s\n");
5f7bb027 52+ rprintf(F," --ignore-case ignore case when comparing filenames\n");
2b06a19d 53 rprintf(F," --address=ADDRESS bind address for outgoing socket to daemon\n");
37da98ae 54 rprintf(F," --port=PORT specify double-colon alternate port number\n");
896871f8 55 rprintf(F," --blocking-io use blocking I/O for the remote shell\n");
91f798a7 56@@ -485,6 +487,7 @@ static struct poptOption long_options[]
edea1111
WD
57 {"only-write-batch", 0, POPT_ARG_STRING, &batch_name, OPT_ONLY_WRITE_BATCH, 0, 0 },
58 {"files-from", 0, POPT_ARG_STRING, &files_from, 0, 0, 0 },
59 {"from0", '0', POPT_ARG_NONE, &eol_nulls, 0, 0, 0},
5f7bb027 60+ {"ignore-case", 0, POPT_ARG_NONE, &ignore_case, 0, 0, 0 },
edea1111
WD
61 {"numeric-ids", 0, POPT_ARG_NONE, &numeric_ids, 0, 0, 0 },
62 {"timeout", 0, POPT_ARG_INT, &io_timeout, 0, 0, 0 },
63 {"rsh", 'e', POPT_ARG_STRING, &shell_cmd, 0, 0, 0 },
91f798a7 64@@ -1563,6 +1566,9 @@ void server_options(char **args,int *arg
5f7bb027
WD
65 args[ac++] = arg;
66 }
7628f156 67
5f7bb027
WD
68+ if (ignore_case)
69+ args[ac++] = "--ignore-case";
7628f156 70+
afbebe13 71 if (partial_dir && am_sender) {
27a7053c
WD
72 if (partial_dir != partialdir_for_delayupdate) {
73 args[ac++] = "--partial-dir";
91f798a7
WD
74--- orig/t_stub.c 2005-11-12 20:13:05
75+++ t_stub.c 2005-11-12 20:14:28
76@@ -27,6 +27,7 @@
77 **/
78
992633a5 79 int modify_window = 0;
91f798a7 80+int ignore_case = 0;
992633a5 81 int module_id = -1;
56208f7b 82 int relative_paths = 0;
91f798a7
WD
83 int human_readable = 0;
84--- orig/util.c 2005-11-12 20:13:05
85+++ util.c 2005-11-12 20:14:39
86@@ -30,6 +30,7 @@
87 extern int verbose;
88 extern int dry_run;
992633a5 89 extern int module_id;
91f798a7 90+extern int ignore_case;
992633a5 91 extern int modify_window;
56208f7b 92 extern int relative_paths;
91f798a7
WD
93 extern int human_readable;
94@@ -1045,11 +1046,23 @@ int u_strcmp(const char *cs1, const char
5f7bb027
WD
95 {
96 const uchar *s1 = (const uchar *)cs1;
97 const uchar *s2 = (const uchar *)cs2;
8a524ae0 98+
5f7bb027 99+ if (ignore_case) {
992633a5
WD
100+ uchar c1, c2;
101+ while (1) {
102+ c1 = islower(*s1) ? toupper(*s1) : *s1;
103+ c2 = islower(*s2) ? toupper(*s2) : *s2;
104+ if (!c1 || c1 != c2)
105+ break;
106+ s1++, s2++;
5f7bb027 107+ }
992633a5
WD
108
109- while (*s1 && *s2 && (*s1 == *s2)) {
110- s1++; s2++;
111+ return (int)c1 - (int)c2;
112 }
113
114+ while (*s1 && *s1 == *s2)
115+ s1++, s2++;
5f7bb027 116+
992633a5
WD
117 return (int)*s1 - (int)*s2;
118 }
119
120--- orig/wildtest.c 2004-02-07 18:40:52
121+++ wildtest.c 2004-08-13 17:19:34
122@@ -16,6 +16,7 @@ int fnmatch_errors = 0;
123 #endif
124
125 int wildmatch_errors = 0;
126+int ignore_case = 0;
127
128 typedef char bool;
5f7bb027 129