* mkgroup.c (main): Call enum_local_groups with offset 0x30000 for local
machine, too.
This commit is contained in:
parent
f3939c059c
commit
3bde24b892
|
@ -1,3 +1,8 @@
|
|||
2014-11-28 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* mkgroup.c (main): Call enum_local_groups with offset 0x30000 for local
|
||||
machine, too.
|
||||
|
||||
2014-11-27 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* mkgroup.c (main): Call enum_groups with offset 0x30000 for local
|
||||
|
|
|
@ -779,8 +779,9 @@ main (int argc, char **argv)
|
|||
{
|
||||
if (domlist[i].domain || !domlist[i].str)
|
||||
continue;
|
||||
if (!enum_local_groups (domlist + i, sep_char, off, disp_groupname,
|
||||
print_builtin, print_current))
|
||||
if (!enum_local_groups (domlist + i, sep_char,
|
||||
(nss_src == NSS_SRC_FILES) ? 0x30000 : off,
|
||||
disp_groupname, print_builtin, print_current))
|
||||
{
|
||||
enum_groups (domlist + i, sep_char,
|
||||
(nss_src == NSS_SRC_FILES) ? 0x30000 : off,
|
||||
|
|
Loading…
Reference in New Issue