diff options
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -178,7 +178,7 @@ match_usergroup_pattern_list(const char *string, const char *pattern) | |||
178 | /* Windows usernames may be Unicode and are not case sensitive */ | 178 | /* Windows usernames may be Unicode and are not case sensitive */ |
179 | return cygwin_ug_match_pattern_list(string, pattern); | 179 | return cygwin_ug_match_pattern_list(string, pattern); |
180 | #else | 180 | #else |
181 | /* Case insensitive match */ | 181 | /* Case sensitive match */ |
182 | return match_pattern_list(string, pattern, 0); | 182 | return match_pattern_list(string, pattern, 0); |
183 | #endif | 183 | #endif |
184 | } | 184 | } |