diff options
author | Tim Potter <tpot@samba.org> | 2003-02-25 23:34:57 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-02-25 23:34:57 +0000 |
commit | 018733eedd7897e6811e8461c07e3acf418c0e09 (patch) | |
tree | fa1b428d0dc0915ac3c9027234cd8a3c72c95dd7 /source/rpc_client/cli_netlogon.c | |
parent | 92abafa62894a125c5a09fc92f5056e4d8b51089 (diff) | |
download | samba-018733eedd7897e6811e8461c07e3acf418c0e09.tar.gz samba-018733eedd7897e6811e8461c07e3acf418c0e09.tar.xz samba-018733eedd7897e6811e8461c07e3acf418c0e09.zip |
More const fixes and flow on fixes from yesterday's const-fest.
Diffstat (limited to 'source/rpc_client/cli_netlogon.c')
-rw-r--r-- | source/rpc_client/cli_netlogon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/rpc_client/cli_netlogon.c b/source/rpc_client/cli_netlogon.c index b5ad7987554..cbb09803af6 100644 --- a/source/rpc_client/cli_netlogon.c +++ b/source/rpc_client/cli_netlogon.c @@ -489,7 +489,7 @@ NTSTATUS cli_netlogon_sam_deltas(struct cli_state *cli, TALLOC_CTX *mem_ctx, /* Logon domain user */ NTSTATUS cli_netlogon_sam_logon(struct cli_state *cli, TALLOC_CTX *mem_ctx, - char *username, char *password, + const char *username, const char *password, int logon_type) { prs_struct qbuf, rbuf; |