diff options
author | Günther Deschner <gd@samba.org> | 2007-06-27 11:42:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:23:38 -0500 |
commit | 7eb828135bd7407851a10c32d57c404ecb030140 (patch) | |
tree | f14aa962258c8927b30ce8a3131adb2c0e98c2cc /source3/libmsrpc | |
parent | d4a2898943a67e5612b0b60ce7eb1ccf28da8efd (diff) | |
download | samba-7eb828135bd7407851a10c32d57c404ecb030140.tar.gz samba-7eb828135bd7407851a10c32d57c404ecb030140.tar.bz2 samba-7eb828135bd7407851a10c32d57c404ecb030140.zip |
r23627: Allow to pass down the lookup-level to rpccli_lsa_lookup_names().
Guenther
(This used to be commit e9a7512a9f630340004913f1379452eea8a9b6ae)
Diffstat (limited to 'source3/libmsrpc')
-rw-r--r-- | source3/libmsrpc/cac_lsarpc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/libmsrpc/cac_lsarpc.c b/source3/libmsrpc/cac_lsarpc.c index de53c0f483..d8813fc204 100644 --- a/source3/libmsrpc/cac_lsarpc.c +++ b/source3/libmsrpc/cac_lsarpc.c @@ -337,7 +337,7 @@ int cac_LsaGetSidsFromNames( CacServerHandle * hnd, TALLOC_CTX * mem_ctx, rpccli_lsa_lookup_names( pipe_hnd, mem_ctx, op->in.pol, num_names, ( const char ** ) op->in.names, NULL, - &sids, &types ); + 1, &sids, &types ); if ( NT_STATUS_IS_OK( hnd->status ) ) { /*this is the easy part, just make the out.sids array */ @@ -662,7 +662,7 @@ int cac_LsaEnumAccountRights( CacServerHandle * hnd, TALLOC_CTX * mem_ctx, op->in.pol, 1, ( const char ** ) &( op->in. name ), - NULL, &user_sid, &type ); + NULL, 1, &user_sid, &type ); if ( !NT_STATUS_IS_OK( hnd->status ) ) return CAC_FAILURE; @@ -928,7 +928,7 @@ int cac_LsaOpenAccount( CacServerHandle * hnd, TALLOC_CTX * mem_ctx, op->in.pol, 1, ( const char ** ) &( op->in. name ), - NULL, &user_sid, &type ); + NULL, 1, &user_sid, &type ); if ( !NT_STATUS_IS_OK( hnd->status ) ) return CAC_FAILURE; @@ -998,7 +998,7 @@ int cac_LsaAddPrivileges( CacServerHandle * hnd, TALLOC_CTX * mem_ctx, op->in.pol, 1, ( const char ** ) &( op->in. name ), - NULL, &user_sid, &type ); + NULL, 1, &user_sid, &type ); if ( !NT_STATUS_IS_OK( hnd->status ) ) return CAC_FAILURE; @@ -1060,7 +1060,7 @@ int cac_LsaRemovePrivileges( CacServerHandle * hnd, TALLOC_CTX * mem_ctx, op->in.pol, 1, ( const char ** ) &( op->in. name ), - NULL, &user_sid, &type ); + NULL, 1, &user_sid, &type ); if ( !NT_STATUS_IS_OK( hnd->status ) ) return CAC_FAILURE; @@ -1122,7 +1122,7 @@ int cac_LsaClearPrivileges( CacServerHandle * hnd, TALLOC_CTX * mem_ctx, op->in.pol, 1, ( const char ** ) &( op->in. name ), - NULL, &user_sid, &type ); + NULL, 1, &user_sid, &type ); if ( !NT_STATUS_IS_OK( hnd->status ) ) return CAC_FAILURE; @@ -1181,7 +1181,7 @@ int cac_LsaSetPrivileges( CacServerHandle * hnd, TALLOC_CTX * mem_ctx, op->in.pol, 1, ( const char ** ) &( op->in. name ), - NULL, &user_sid, &type ); + NULL, 1, &user_sid, &type ); if ( !NT_STATUS_IS_OK( hnd->status ) ) return CAC_FAILURE; |