diff options
author | Corinna Vinschen <vinschen@redhat.com> | 2019-02-20 13:41:25 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-02-22 15:22:53 +1100 |
commit | 37638c752041d591371900df820f070037878a2d (patch) | |
tree | c568d26fa3747cfe35d86b46df84d5bcc0417245 /groupaccess.c | |
parent | bed1d43698807a07bb4ddb93a46b0bd84b9970b3 (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.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/groupaccess.c b/groupaccess.c index 9e4d25521..43367990d 100644 --- a/groupaccess.c +++ b/groupaccess.c | |||
@@ -103,7 +103,11 @@ ga_match_pattern_list(const char *group_pattern) | |||
103 | int i, found = 0; | 103 | int i, found = 0; |
104 | 104 | ||
105 | for (i = 0; i < ngroups; i++) { | 105 | for (i = 0; i < ngroups; i++) { |
106 | #ifndef HAVE_CYGWIN | ||
106 | switch (match_pattern_list(groups_byname[i], group_pattern, 0)) { | 107 | switch (match_pattern_list(groups_byname[i], group_pattern, 0)) { |
108 | #else | ||
109 | switch (match_pattern_list(groups_byname[i], group_pattern, 1)) { | ||
110 | #endif | ||
107 | case -1: | 111 | case -1: |
108 | return 0; /* Negated match wins */ | 112 | return 0; /* Negated match wins */ |
109 | case 0: | 113 | case 0: |