summaryrefslogtreecommitdiff
path: root/crypto/openssh/match.c
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2006-09-30 13:29:51 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2006-09-30 13:29:51 +0000
commit761efaa70c2ed8d35722b7bc234a46bf2457f876 (patch)
treebba6f2fe7855d7b0095f9dc7720dc27bea4d1fdf /crypto/openssh/match.c
parent30c2033ae748d441213eed2e5c3fae760cc8ea61 (diff)
downloadsrc-test2-761efaa70c2ed8d35722b7bc234a46bf2457f876.tar.gz
src-test2-761efaa70c2ed8d35722b7bc234a46bf2457f876.zip
Notes
Diffstat (limited to 'crypto/openssh/match.c')
-rw-r--r--crypto/openssh/match.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/crypto/openssh/match.c b/crypto/openssh/match.c
index 29fb7dab94e2..e3c993073fd8 100644
--- a/crypto/openssh/match.c
+++ b/crypto/openssh/match.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: match.c,v 1.26 2006/08/03 03:34:42 deraadt Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -35,10 +36,14 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: match.c,v 1.20 2005/06/17 02:44:32 djm Exp $");
-#include "match.h"
+#include <sys/types.h>
+
+#include <ctype.h>
+#include <string.h>
+
#include "xmalloc.h"
+#include "match.h"
/*
* Returns true if the given string matches the pattern (which may contain ?
@@ -136,7 +141,7 @@ match_pattern_list(const char *string, const char *pattern, u_int len,
i < len && subi < sizeof(sub) - 1 && pattern[i] != ',';
subi++, i++)
sub[subi] = dolower && isupper(pattern[i]) ?
- tolower(pattern[i]) : pattern[i];
+ (char)tolower(pattern[i]) : pattern[i];
/* If subpattern too long, return failure (no match). */
if (subi >= sizeof(sub) - 1)
return 0;