summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/groupaccess.h
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2008-07-04 03:45:00 +0000
committerDamien Miller <djm@cvs.openbsd.org>2008-07-04 03:45:00 +0000
commitc10ef3f8103182ee37068815a7c18848c10b4e6c (patch)
treec7e61875eb6420d9dfe26970b39af08dba7ecf36 /usr.bin/ssh/groupaccess.h
parent4a3279308d365a0c004fecee6d7375c53e8b66ba (diff)
support negation of groups in "Match group" block (bz#1315); ok dtucker@
Diffstat (limited to 'usr.bin/ssh/groupaccess.h')
-rw-r--r--usr.bin/ssh/groupaccess.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/groupaccess.h b/usr.bin/ssh/groupaccess.h
index 04b44989401..000578e7646 100644
--- a/usr.bin/ssh/groupaccess.h
+++ b/usr.bin/ssh/groupaccess.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: groupaccess.h,v 1.7 2006/08/03 03:34:42 deraadt Exp $ */
+/* $OpenBSD: groupaccess.h,v 1.8 2008/07/04 03:44:59 djm Exp $ */
/*
* Copyright (c) 2001 Kevin Steves. All rights reserved.
@@ -29,6 +29,7 @@
int ga_init(const char *, gid_t);
int ga_match(char * const *, int);
+int ga_match_pattern_list(const char *);
void ga_free(void);
#endif