mirror of
https://github.com/samba-team/samba.git
synced 2025-02-04 17:47:26 +03:00
s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_session.c
metze
This commit is contained in:
parent
640154c434
commit
2a39c5f513
@ -101,7 +101,7 @@ NTSTATUS smb2cli_logoff(struct smbXcli_conn *conn,
|
|||||||
struct smbXcli_session *session)
|
struct smbXcli_session *session)
|
||||||
{
|
{
|
||||||
TALLOC_CTX *frame = talloc_stackframe();
|
TALLOC_CTX *frame = talloc_stackframe();
|
||||||
struct event_context *ev;
|
struct tevent_context *ev;
|
||||||
struct tevent_req *req;
|
struct tevent_req *req;
|
||||||
NTSTATUS status = NT_STATUS_NO_MEMORY;
|
NTSTATUS status = NT_STATUS_NO_MEMORY;
|
||||||
|
|
||||||
@ -112,7 +112,7 @@ NTSTATUS smb2cli_logoff(struct smbXcli_conn *conn,
|
|||||||
status = NT_STATUS_INVALID_PARAMETER;
|
status = NT_STATUS_INVALID_PARAMETER;
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
ev = event_context_init(frame);
|
ev = tevent_context_init(frame);
|
||||||
if (ev == NULL) {
|
if (ev == NULL) {
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user