summaryrefslogtreecommitdiffstats
path: root/groupaccess.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:02:36 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:02:36 +0000
commit16ae3d0dba5f81e5602798b915105284033dea75 (patch)
treece0c2bf0d7e961b1015d43d1a07269d81e7a9ce9 /groupaccess.h
parent90279d80f57c79ac6566051172a94a2cca9674b1 (diff)
- itojun@cvs.openbsd.org 2001/06/26 06:32:58
[atomicio.h authfd.h authfile.h auth.h auth-options.h bufaux.h buffer.h canohost.h channels.h cipher.h clientloop.h compat.h compress.h crc32.h deattack.h dh.h dispatch.h groupaccess.h hostfile.h kex.h key.h log.h mac.h match.h misc.h mpaux.h packet.h radix.h readconf.h readpass.h rsa.h] prototype pedant. not very creative... - () -> (void) - no variable names
Diffstat (limited to 'groupaccess.h')
-rw-r--r--groupaccess.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/groupaccess.h b/groupaccess.h
index b4e5e42f..01e394f6 100644
--- a/groupaccess.h
+++ b/groupaccess.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: groupaccess.h,v 1.2 2001/01/29 01:58:15 niklas Exp $ */
+/* $OpenBSD: groupaccess.h,v 1.3 2001/06/26 06:32:52 itojun Exp $ */
/*
* Copyright (c) 2001 Kevin Steves. All rights reserved.
@@ -33,13 +33,13 @@
* Initialize group access list for user with primary (base) and
* supplementary groups. Return the number of groups in the list.
*/
-int ga_init(const char *user, gid_t base);
+int ga_init(const char *, gid_t);
/*
* Return 1 if one of user's groups is contained in groups.
* Return 0 otherwise. Use match_pattern() for string comparison.
*/
-int ga_match(char * const *groups, int ngroups);
+int ga_match(char * const *, int);
/*
* Free memory allocated for group access list.