diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-06-02 22:35:53 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-06-07 23:34:29 +1000 |
commit | edba46ce94c335411ab337eeb4ef6f88fb3aae80 (patch) | |
tree | bbf089ae7e6058e172bbbd697dfe889d685db6e0 /source3/include | |
parent | 0af2dc43ade4f819ebbb192e3f5493838f99d89b (diff) | |
download | samba-edba46ce94c335411ab337eeb4ef6f88fb3aae80.tar.gz samba-edba46ce94c335411ab337eeb4ef6f88fb3aae80.tar.bz2 samba-edba46ce94c335411ab337eeb4ef6f88fb3aae80.zip |
s3:auth Change auth_ntlmssp_server_info API to return NTSTATUS
It's nicer to have an NTSTATUS return, and in s3compat there may be a
reason other than 'no memory' why this can fail.
Andrew Bartlett
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index dc6b555fd2..268e2b50aa 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -54,8 +54,9 @@ NTSTATUS auth_netlogond_init(void); /* The following definitions come from auth/auth_ntlmssp.c */ -struct auth_serversupplied_info *auth_ntlmssp_server_info(TALLOC_CTX *mem_ctx, - struct auth_ntlmssp_state *auth_ntlmssp_state); +NTSTATUS auth_ntlmssp_server_info(TALLOC_CTX *mem_ctx, + struct auth_ntlmssp_state *auth_ntlmssp_state, + struct auth_serversupplied_info **_server_info); struct ntlmssp_state *auth_ntlmssp_get_ntlmssp_state(struct auth_ntlmssp_state *auth_ntlmssp_state); const char *auth_ntlmssp_get_username(struct auth_ntlmssp_state *auth_ntlmssp_state); const char *auth_ntlmssp_get_domain(struct auth_ntlmssp_state *auth_ntlmssp_state); |