blob: e6d8979a38446903c26e2e0f29570da6e72db003 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ISC license. */
#include <skalibs/genalloc.h>
#include <nsss/grp-unix.h>
#include <nsss/nsss-unix.h>
#include "nsss-internal.h"
struct group *nsss_unix_getgrgid (gid_t gid)
{
nsss_unix_t a = NSSS_UNIX_ZERO ;
if (!nsss_unix_grp_start(&a)) return 0 ;
nsss_grp_sa_here.len = 0 ;
genalloc_setlen(char *, &nsss_grp_ga_here, 0) ;
if (!nsss_unix_grp_getbygid(&a, &nsss_grp_here, &nsss_grp_sa_here, &nsss_grp_ga_here, gid))
{
nsss_unix_grp_end(&a) ;
return 0 ;
}
nsss_unix_grp_end(&a) ;
return &nsss_grp_here ;
}
|