diff options
author | Roland McGrath <roland@redhat.com> | 1993-05-12 19:20:45 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-05-12 19:20:45 +0000 |
commit | 6c6f21045691f098c824d974dbd8160571e57e08 (patch) | |
tree | 12745be406f2663876da72537ff3d6720b377bf8 /job.c | |
parent | c5c92b71ceaf8c991a40d3298704ac22689cadeb (diff) | |
download | gunmake-6c6f21045691f098c824d974dbd8160571e57e08.tar.gz |
Formerly job.c.~103~
Diffstat (limited to 'job.c')
-rw-r--r-- | job.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -975,15 +975,15 @@ search_path (file, path, program) #endif static int ngroups = -1; #ifdef NGROUPS_MAX - static gid_t groups[NGROUPS_MAX]; + static GETGROUPS_T groups[NGROUPS_MAX]; #define ngroups_max NGROUPS_MAX #else - static gid_t *groups = 0; + static GETGROUPS_T *groups = 0; static int ngroups_max; if (groups == 0) { ngroups_max = GET_NGROUPS_MAX; - groups = (gid_t *) malloc (ngroups_max * sizeof (gid_t)); + groups = (GETGROUPS_T *) malloc (ngroups_max * sizeof (GETGROUPS_T)); } #endif if (groups != 0 && ngroups == -1) |