summaryrefslogtreecommitdiff
path: root/match.h
diff options
context:
space:
mode:
authormouring <mouring>2002-03-05 01:35:23 +0000
committermouring <mouring>2002-03-05 01:35:23 +0000
commitf5860939499aec0fa65554d6d556dc646dbf3762 (patch)
tree73e988a3db278fabec3bc250d3d12323e270f436 /match.h
parentdb05553aab7e33ad8ad073bd312e9fac2ff0a546 (diff)
downloadopenssh-f5860939499aec0fa65554d6d556dc646dbf3762.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