aboutsummaryrefslogtreecommitdiff
path: root/match.c
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2021-02-14 21:04:52 +0000
committerEd Maste <emaste@FreeBSD.org>2021-02-14 21:04:52 +0000
commit82e5fdc50050d6dccf1f547818312aebd3b6626e (patch)
treeb461b67d9d667b0417001eb929b26fa3b198d93f /match.c
parent0194e6d04277a638afac6c4a664d3bc6a0d944eb (diff)
downloadsrc-35dd2aa0b3ef8e802af44336a81f73b40089663a.tar.gz
src-35dd2aa0b3ef8e802af44336a81f73b40089663a.zip
Vendor import of OpenSSH 8.2p1vendor/openssh/8.2p1
Diffstat (limited to 'match.c')
-rw-r--r--match.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/match.c b/match.c
index 25c866a43c8f..3a8fa9d78d5c 100644
--- a/match.c
+++ b/match.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: match.c,v 1.40 2019/10/04 04:13:39 djm Exp $ */
+/* $OpenBSD: match.c,v 1.41 2019/11/13 04:47:52 deraadt Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -42,6 +42,7 @@
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
+#include <stdarg.h>
#include <stdio.h>
#include "xmalloc.h"
@@ -178,7 +179,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
}