libsmbclient: Remove unused cli_session_setup_ntlmssp()
authorVolker Lendecke <vl@samba.org>
Tue, 2 Apr 2013 10:50:43 +0000 (12:50 +0200)
committerJeremy Allison <jra@samba.org>
Thu, 11 Apr 2013 21:35:14 +0000 (14:35 -0700)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/libsmb/cliconnect.c

index 7d7c55ac7d7771d3af36ecef7b82b07346de6f1b..233f824bbdea3d7d34c599e383575ed67b6d03b8 100644 (file)
@@ -1829,35 +1829,6 @@ static NTSTATUS cli_session_setup_ntlmssp_recv(struct tevent_req *req)
        return NT_STATUS_OK;
 }
 
-static NTSTATUS cli_session_setup_ntlmssp(struct cli_state *cli,
-                                         const char *user,
-                                         const char *pass,
-                                         const char *domain)
-{
-       struct tevent_context *ev;
-       struct tevent_req *req;
-       NTSTATUS status = NT_STATUS_NO_MEMORY;
-
-       if (smbXcli_conn_has_async_calls(cli->conn)) {
-               return NT_STATUS_INVALID_PARAMETER;
-       }
-       ev = samba_tevent_context_init(talloc_tos());
-       if (ev == NULL) {
-               goto fail;
-       }
-       req = cli_session_setup_ntlmssp_send(ev, ev, cli, user, pass, domain);
-       if (req == NULL) {
-               goto fail;
-       }
-       if (!tevent_req_poll_ntstatus(req, ev, &status)) {
-               goto fail;
-       }
-       status = cli_session_setup_ntlmssp_recv(req);
-fail:
-       TALLOC_FREE(ev);
-       return status;
-}
-
 #ifdef HAVE_KRB5
 
 static char *cli_session_setup_get_principal(