diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-03-14 10:11:03 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-03-14 10:11:03 +1100 |
commit | 39f03829a626388e8396a14c265d2f95520b0e98 (patch) | |
tree | ae1163b4be2637564ba0573a8e1fa18c6ec25bef /source4/torture | |
parent | bd614d28d48a187adcafffd301b0f70c154f4d38 (diff) | |
download | samba-39f03829a626388e8396a14c265d2f95520b0e98.tar.gz samba-39f03829a626388e8396a14c265d2f95520b0e98.tar.xz samba-39f03829a626388e8396a14c265d2f95520b0e98.zip |
Check for Administrator as a Alias (copy&paste bug)
Andrew Bartlett
(This used to be commit e7afb31df1f12a3cd39ed9b95d76edc6ff0d6a70)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/lsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c index 60d022fbea7..04d13a97c1c 100644 --- a/source4/torture/rpc/lsa.c +++ b/source4/torture/rpc/lsa.c @@ -295,8 +295,8 @@ static bool test_LookupNames_wellknown(struct dcerpc_pipe *p, ret &= test_LookupNames(p, mem_ctx, handle, &tnames); name.name.string = "BUILTIN\\Administrators"; - ret &= test_LookupNames(p, mem_ctx, handle, &tnames); name.sid_type = SID_NAME_ALIAS; + ret &= test_LookupNames(p, mem_ctx, handle, &tnames); name.name.string = "SYSTEM"; name.sid_type = SID_NAME_WKN_GRP; |