diff options
author | Jeremy Allison <jra@samba.org> | 2009-11-12 13:56:33 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-11-12 13:56:33 -0800 |
commit | 5363d6e62c2d4d3275e78d04c48835524c54f620 (patch) | |
tree | a7570c052a33168acbf0ce74b9685a3ba7bf6355 /source3/rpc_client | |
parent | 6747a91ca0c350374c54bac5892cf96e5aed029f (diff) | |
download | samba-5363d6e62c2d4d3275e78d04c48835524c54f620.tar.gz samba-5363d6e62c2d4d3275e78d04c48835524c54f620.tar.bz2 samba-5363d6e62c2d4d3275e78d04c48835524c54f620.zip |
Ensure all callers to the rpc_client/cli_pipe functions correctly
initialize return variables.
Jeremy.
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_pipe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index deada5acb2..da54fca85d 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -3093,7 +3093,7 @@ static int cli_auth_ntlmssp_data_destructor(struct cli_pipe_auth_data *auth) return 0; } -NTSTATUS rpccli_ntlmssp_bind_data(TALLOC_CTX *mem_ctx, +static NTSTATUS rpccli_ntlmssp_bind_data(TALLOC_CTX *mem_ctx, enum pipe_auth_type auth_type, enum dcerpc_AuthLevel auth_level, const char *domain, @@ -3213,7 +3213,7 @@ static int cli_auth_kerberos_data_destructor(struct kerberos_auth_struct *auth) } #endif -NTSTATUS rpccli_kerberos_bind_data(TALLOC_CTX *mem_ctx, +static NTSTATUS rpccli_kerberos_bind_data(TALLOC_CTX *mem_ctx, enum dcerpc_AuthLevel auth_level, const char *service_princ, const char *username, |