summaryrefslogtreecommitdiffstats
path: root/match.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2019-11-13 10:41:41 +1100
committerDarren Tucker <dtucker@dtucker.net>2019-11-13 10:42:46 +1100
commita4cc579c6ad2b2e54bdd6cc0d5e12c2288113a56 (patch)
tree12614adbe1245b77a21baa0f2d75015011bfb9a9 /match.c
parentfccff339cab5aa66f2554e0188b83f980683490b (diff)
Fix comment in match_usergroup_pattern_list.
Spotted by balu.gajjala@gmail.com via bz#3092.
Diffstat (limited to 'match.c')
-rw-r--r--match.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/match.c b/match.c
index 25c866a4..754d2a0b 100644
--- a/match.c
+++ b/match.c
@@ -178,7 +178,7 @@ match_usergroup_pattern_list(const char *string, const char *pattern)
/* Windows usernames may be Unicode and are not case sensitive */
return cygwin_ug_match_pattern_list(string, pattern);
#else
- /* Case insensitive match */
+ /* Case sensitive match */
return match_pattern_list(string, pattern, 0);
#endif
}