summaryrefslogtreecommitdiff
path: root/source3/rpc_client
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-07-17 02:49:26 +0000
committerGerald Carter <jerry@samba.org>2003-07-17 02:49:26 +0000
commitc39c02e1aeeb74e8c45b32d99d9354eb66040171 (patch)
tree49e9486b6db6d5436d95d48389607319d60d1ca1 /source3/rpc_client
parent04382a5266fd618e81d8ac454db9a04a1fda7c1b (diff)
downloadsamba-c39c02e1aeeb74e8c45b32d99d9354eb66040171.tar.gz
samba-c39c02e1aeeb74e8c45b32d99d9354eb66040171.tar.bz2
samba-c39c02e1aeeb74e8c45b32d99d9354eb66040171.zip
fix the build. Ifdef out some code
(This used to be commit e66541d0e1befec5d589890994454dd639ea0665)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r--source3/rpc_client/cli_lsarpc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/rpc_client/cli_lsarpc.c b/source3/rpc_client/cli_lsarpc.c
index db873236e4..b01cf8ed4a 100644
--- a/source3/rpc_client/cli_lsarpc.c
+++ b/source3/rpc_client/cli_lsarpc.c
@@ -1257,6 +1257,7 @@ NTSTATUS cli_lsa_remove_account_rights(struct cli_state *cli, TALLOC_CTX *mem_ct
POLICY_HND *pol, DOM_SID sid, BOOL removeall,
uint32 count, const char **privs_name)
{
+#if 0
prs_struct qbuf, rbuf;
LSA_Q_REMOVE_ACCT_RIGHTS q;
LSA_R_REMOVE_ACCT_RIGHTS r;
@@ -1290,6 +1291,8 @@ NTSTATUS cli_lsa_remove_account_rights(struct cli_state *cli, TALLOC_CTX *mem_ct
done:
return result;
+#endif
+ return NT_STATUS_UNSUCCESSFUL;
}