summaryrefslogtreecommitdiff
path: root/match.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-03-05 01:35:23 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-03-05 01:35:23 +0000
commit916d83d208d751b9a3605165893370c8d429bba5 (patch)
tree70ccdcb0c4060a4f0ca6a5170a63f517cf1f2638 /match.h
parent80cb27dd7c7caa07615bf375a3bd090085f2d33d (diff)
downloadopenssh-git-916d83d208d751b9a3605165893370c8d429bba5.tar.gz
- stevesk@cvs.openbsd.org 2002/02/28 19:36:28
[auth.c match.c match.h] delay hostname lookup until we see a ``@'' in DenyUsers and AllowUsers for sshd -u0; ok markus@
Diffstat (limited to 'match.h')
-rw-r--r--match.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/match.h b/match.h
index 7b777de3..a5e85a9d 100644
--- a/match.h
+++ b/match.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: match.h,v 1.10 2001/12/05 16:54:51 markus Exp $ */
+/* $OpenBSD: match.h,v 1.11 2002/02/28 19:36:28 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -18,7 +18,7 @@ int match_pattern(const char *, const char *);
int match_pattern_list(const char *, const char *, u_int, int);
int match_hostname(const char *, const char *, u_int);
int match_host_and_ip(const char *, const char *, const char *);
-int match_user(const char *, const char *, const char *, const char *);
+int match_user(const char *, int, const char *);
char *match_list(const char *, const char *, u_int *);
#endif