From: Ezra Peisach Date: Fri, 6 Jul 2001 14:07:01 +0000 (+0000) Subject: * auth_unix.c: In case GETGROUPS_T is not defined, default to int X-Git-Tag: krb5-1.3-alpha1~1234 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=699b26a8e517fd49ff7076579ebddbbae177ca3a;p=krb5.git * auth_unix.c: In case GETGROUPS_T is not defined, default to int git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13569 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/rpc/ChangeLog b/src/lib/rpc/ChangeLog index 76556bb77..1040d7586 100644 --- a/src/lib/rpc/ChangeLog +++ b/src/lib/rpc/ChangeLog @@ -1,3 +1,7 @@ +2001-07-06 Ezra Peisach + + * auth_unix.c: In case GETGROUPS_T is not defined, default to int. + 2001-07-05 Ezra Peisach * configure.in: Add AC_TYPE_GETGROUPS to determine argument to diff --git a/src/lib/rpc/auth_unix.c b/src/lib/rpc/auth_unix.c index 9411fdc8a..9dbde0da0 100644 --- a/src/lib/rpc/auth_unix.c +++ b/src/lib/rpc/auth_unix.c @@ -52,6 +52,9 @@ static char sccsid[] = "@(#)auth_unix.c 1.19 87/08/11 Copyr 1984 Sun Micro"; #include #include +#ifndef GETGROUPS_T +#define GETGROUPS_T int +#endif /* * Unix authenticator operations vector