Displaying 6 results from an estimated 6 matches for "num_rids".
Did you mean:
num_ids
2012 Jun 25
1
winbind AD nested group issues
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 6083 bytes
Desc: not available
URL: <http://lists.samba.org/pipermail/samba/attachments/20120625/569cea1a/attachment.bin>
2013 Nov 06
0
mod_auth_ntlm_winbind SSO
...13/11/06 11:37:19.020158, 1] ../librpc/ndr/ndr.c:284(ndr_print_function_debug)
wbint_LookupUserAliases: struct wbint_LookupUserAliases
out: struct wbint_LookupUserAliases
rids : *
rids: struct wbint_RidArray
num_rids : 0x00000000 (0)
rids: ARRAY(0)
result : NT_STATUS_OK
[2013/11/06 11:37:19.020231, 4] winbindd/winbindd_dual.c:1557(fork_domain_child)
Finished processing child request 59
[2013/11/06 11:37:19.020250, 10] winbindd/winbindd_dua...
2018 Dec 09
2
"wbinfo -u" considered harmful towards Winbindd...
...ecdef10 "annha585",
> type=SID_NAME_USER) at ../source3/winbindd/winbindd_cache.c:969
> #4 0x0000000001059b0f in wb_cache_rids_to_names (domain=domain at entry=0x812669fe0, mem_ctx=0x81261d660, domain_sid=domain_sid at entry=0x8b3e881e0, rids=rids at entry=0x8b800dfa0,
> num_rids=num_rids at entry=117864, domain_name=domain_name at entry=0x7fffffffcd90, names=0x7fffffffcd98, types=0x7fffffffcda0) at ../source3/winbindd/winbindd_cache.c:2202
> #5 0x000000000107b4d0 in _wbint_LookupRids (p=p at entry=0x7fffffffce30, r=r at entry=0x8a9444080) at ../source3/winbindd/winbind...
2018 Nov 13
2
winbind service panics "randomly"
...0), real(0, 0),
class=rpc_parse] ../librpc/ndr/ndr.c:471(ndr_print_function_debug)
wbint_QueryUserRidList: struct wbint_QueryUserRidList
out: struct wbint_QueryUserRidList
rids : *
rids: struct wbint_RidArray
num_rids : 0x0000001f (31)
rids: ARRAY(31)
rids : 0x000004b9 (1209)
rids : 0x00000847 (2119)
rids : 0x0000045d (1117)...
2018 Nov 13
2
winbind service panics "randomly"
Hi all,
on a recently installed samba file server, the winbind service crashes
apparently randomly. Every few hours it's necessary to restart the winbind
service and then it works for a few more hours. Any ideas are welcome.
1) the environment: 2 debian stretch DC's with round-robind bind+dhcp with
dns-update. 1 fileserver also (AD backend) on debian stretch. All on self
compiled samba
2003 Dec 01
0
No subject
...loc_zero(ctx, sizeof(UNIHDR)*num_names);
if (hdr_name == NULL)
return False;
- uni_name = (UNISTR2 *)talloc(ctx,sizeof(UNISTR2)*num_names);
+ uni_name = (UNISTR2 *)talloc_zero(ctx,sizeof(UNISTR2)*num_names);
if (uni_name == NULL)
return False;
}
@@ -1363,7 +1375,7 @@
}
if (num_rids) {
- if ((group_attrs = (uint32 *)talloc(p->mem_ctx, num_rids * sizeof(uint32))) == NULL)
+ if ((group_attrs = (uint32 *)talloc_zero(p->mem_ctx, num_rids * sizeof(uint32))) == NULL)
return NT_STATUS_NO_MEMORY;
}
@@ -1476,6 +1488,7 @@
DEBUG(3,("User:[%s]\n", smb_pass...