]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Fix comment in match_usergroup_pattern_list.
authorDarren Tucker <dtucker@dtucker.net>
Tue, 12 Nov 2019 23:41:41 +0000 (10:41 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Tue, 12 Nov 2019 23:42:46 +0000 (10:42 +1100)
Spotted by balu.gajjala@gmail.com via bz#3092.

match.c

diff --git a/match.c b/match.c
index 25c866a43c8fdf629885f844a8249dfa404da1a8..754d2a0bad70deb8b348dd36a02e084349e6be55 100644 (file)
--- 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
 }