=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/groupaccess.h,v retrieving revision 1.2.4.2 retrieving revision 1.3 diff -u -r1.2.4.2 -r1.3 --- src/usr.bin/ssh/groupaccess.h 2001/03/21 18:52:46 1.2.4.2 +++ src/usr.bin/ssh/groupaccess.h 2001/06/26 06:32:52 1.3 @@ -1,4 +1,4 @@ -/* $OpenBSD: groupaccess.h,v 1.2.4.2 2001/03/21 18:52:46 jason 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.