=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/groupaccess.c,v retrieving revision 1.3 retrieving revision 1.3.6.2 diff -u -r1.3 -r1.3.6.2 --- src/usr.bin/ssh/groupaccess.c 2001/01/29 01:58:15 1.3 +++ src/usr.bin/ssh/groupaccess.c 2002/03/09 00:20:44 1.3.6.2 @@ -1,5 +1,3 @@ -/* $OpenBSD: groupaccess.c,v 1.3 2001/01/29 01:58:15 niklas Exp $ */ - /* * Copyright (c) 2001 Kevin Steves. All rights reserved. * @@ -25,6 +23,7 @@ */ #include "includes.h" +RCSID("$OpenBSD: groupaccess.c,v 1.3.6.2 2002/03/09 00:20:44 miod Exp $"); #include "groupaccess.h" #include "xmalloc.h" @@ -34,6 +33,10 @@ static int ngroups; static char *groups_byname[NGROUPS_MAX + 1]; /* +1 for base/primary group */ +/* + * 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) { @@ -53,6 +56,10 @@ return (ngroups = j); } +/* + * 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 n) { @@ -65,6 +72,9 @@ return 0; } +/* + * Free memory allocated for group access list. + */ void ga_free(void) {