X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/blobdiff_plain/3e67f7df70c91ed55dc63946dfbaa9676869f7cc..7be182d4906b34f434845222c75a1af1a1644733:/openbsd-compat/getgrouplist.c diff --git a/openbsd-compat/getgrouplist.c b/openbsd-compat/getgrouplist.c index cc622d82..a57d7d38 100644 --- a/openbsd-compat/getgrouplist.c +++ b/openbsd-compat/getgrouplist.c @@ -1,3 +1,4 @@ +/* $OpenBSD: getgrouplist.c,v 1.12 2005/08/08 08:05:34 espie Exp $ */ /* * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. @@ -27,30 +28,25 @@ * SUCH DAMAGE. */ +/* OPENBSD ORIGINAL: lib/libc/gen/getgrouplist.c */ + #include "includes.h" #ifndef HAVE_GETGROUPLIST -#if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: getgrouplist.c,v 1.8 2003/06/02 20:18:34 millert Exp $"; -#endif /* LIBC_SCCS and not lint */ - /* * get credential */ #include #include +#include #include int -getgrouplist(uname, agroup, groups, grpcnt) - const char *uname; - gid_t agroup; - register gid_t *groups; - int *grpcnt; +getgrouplist(const char *uname, gid_t agroup, gid_t *groups, int *grpcnt) { - register struct group *grp; - register int i, ngroups; + struct group *grp; + int i, ngroups; int ret, maxgroups; int bail;