diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 06:02:36 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 06:02:36 +0200 |
commit | 16ae3d0dba5f81e5602798b915105284033dea75 (patch) | |
tree | ce0c2bf0d7e961b1015d43d1a07269d81e7a9ce9 /groupaccess.h | |
parent | - markus@cvs.openbsd.org 2001/06/26 05:50:11 (diff) | |
download | openssh-16ae3d0dba5f81e5602798b915105284033dea75.tar.xz openssh-16ae3d0dba5f81e5602798b915105284033dea75.zip |
- 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.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/groupaccess.h b/groupaccess.h index b4e5e42fc..01e394f69 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. |