]> andersk Git - openssh.git/blobdiff - groupaccess.c
- itojun@cvs.openbsd.org 2002/10/16 14:31:48
[openssh.git] / groupaccess.c
index bf6be997ed8b1557fa85cfa300635fc5bff46bef..66dfa68fe1f86868e8b6ff9bdf9abbdab89b8ca7 100644 (file)
  */
 
 #include "includes.h"
+RCSID("$OpenBSD: groupaccess.c,v 1.5 2002/03/04 17:27:39 stevesk Exp $");
 
 #include "groupaccess.h"
-#include "ssh.h"
 #include "xmalloc.h"
 #include "match.h"
+#include "log.h"
 
 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)
 {
@@ -51,6 +56,10 @@ ga_init(const char *user, gid_t base)
        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)
 {
@@ -63,6 +72,9 @@ ga_match(char * const *groups, int n)
        return 0;
 }
 
+/*
+ * Free memory allocated for group access list.
+ */
 void
 ga_free(void)
 {
This page took 0.029765 seconds and 4 git commands to generate.