From: Darren Tucker Date: Tue, 12 Nov 2019 23:41:41 +0000 (+1100) Subject: Fix comment in match_usergroup_pattern_list. X-Git-Tag: V_8_2_P1~328 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4cc579c6ad2b2e54bdd6cc0d5e12c2288113a56;p=thirdparty%2Fopenssh-portable.git Fix comment in match_usergroup_pattern_list. Spotted by balu.gajjala@gmail.com via bz#3092. --- diff --git a/match.c b/match.c index 25c866a43..754d2a0ba 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 }