summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/match.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/ssh/match.c')
-rw-r--r--usr.bin/ssh/match.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/match.c b/usr.bin/ssh/match.c
index c373129b853..895ecab37a8 100644
--- a/usr.bin/ssh/match.c
+++ b/usr.bin/ssh/match.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: match.c,v 1.9 2000/09/07 20:27:52 deraadt Exp $");
+RCSID("$OpenBSD: match.c,v 1.10 2000/12/19 23:17:57 markus Exp $");
#include "ssh.h"
@@ -87,12 +87,12 @@ match_pattern(const char *s, const char *pattern)
*/
int
-match_hostname(const char *host, const char *pattern, unsigned int len)
+match_hostname(const char *host, const char *pattern, u_int len)
{
char sub[1024];
int negated;
int got_positive;
- unsigned int i, subi;
+ u_int i, subi;
got_positive = 0;
for (i = 0; i < len;) {