diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nsswitch/wbinfo.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source3/nsswitch/wbinfo.c b/source3/nsswitch/wbinfo.c index 50a716bd1c..82d1061f6e 100644 --- a/source3/nsswitch/wbinfo.c +++ b/source3/nsswitch/wbinfo.c @@ -689,10 +689,17 @@ static bool wbinfo_allocate_uid(void) static bool wbinfo_allocate_gid(void) { + wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE; gid_t gid; - if (!winbind_allocate_gid(&gid)) + /* Send request */ + + wbc_status = wbcAllocateGid(&gid); + if (!WBC_ERROR_IS_OK(wbc_status)) { return false; + } + + /* Display response */ d_printf("New gid: %d\n", gid); |