summaryrefslogtreecommitdiffstats
path: root/groupaccess.c
diff options
context:
space:
mode:
authorCorinna Vinschen <vinschen@redhat.com>2019-02-20 13:41:25 +0100
committerDarren Tucker <dtucker@dtucker.net>2019-02-22 15:22:53 +1100
commit37638c752041d591371900df820f070037878a2d (patch)
treec568d26fa3747cfe35d86b46df84d5bcc0417245 /groupaccess.c
parentbed1d43698807a07bb4ddb93a46b0bd84b9970b3 (diff)
Cygwin: implement case-insensitive Unicode user and group name matching
The previous revert enabled case-insensitive user names again. This patch implements the case-insensitive user and group name matching. To allow Unicode chars, implement the matcher using wchar_t chars in Cygwin-specific code. Keep the generic code changes as small as possible. Cygwin: implement case-insensitive Unicode user and group name matching Signed-off-by: Corinna Vinschen <vinschen@redhat.com>
Diffstat (limited to 'groupaccess.c')
-rw-r--r--groupaccess.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/groupaccess.c b/groupaccess.c
index 9e4d2552..43367990 100644
--- a/groupaccess.c
+++ b/groupaccess.c
@@ -103,7 +103,11 @@ ga_match_pattern_list(const char *group_pattern)
int i, found = 0;
for (i = 0; i < ngroups; i++) {
+#ifndef HAVE_CYGWIN
switch (match_pattern_list(groups_byname[i], group_pattern, 0)) {
+#else
+ switch (match_pattern_list(groups_byname[i], group_pattern, 1)) {
+#endif
case -1:
return 0; /* Negated match wins */
case 0: