1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

Fix spelling s/receving/receiving/

Signed-off-by: Mathieu Parent <math.parent@gmail.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
This commit is contained in:
Mathieu Parent 2018-05-04 22:23:01 +02:00 committed by Andrew Bartlett
parent 43ec8c6bbd
commit 25ac1f192c
2 changed files with 6 additions and 6 deletions

View File

@ -179,7 +179,7 @@ NTSTATUS make_internal_rpc_pipe_socketpair(
subreq = dcerpc_read_ncacn_packet_send(npc, npc->ev, npc->tstream);
if (subreq == NULL) {
DEBUG(2, ("Failed to start receving packets\n"));
DEBUG(2, ("Failed to start receiving packets\n"));
status = NT_STATUS_PIPE_BROKEN;
goto out;
}

View File

@ -395,7 +395,7 @@ static void named_pipe_accept_done(struct tevent_req *subreq)
/* And now start receiving and processing packets */
subreq = dcerpc_read_ncacn_packet_send(npc, npc->ev, npc->tstream);
if (!subreq) {
DEBUG(2, ("Failed to start receving packets\n"));
DEBUG(2, ("Failed to start receiving packets\n"));
goto fail;
}
tevent_req_set_callback(subreq, named_pipe_packet_process, npc);
@ -494,7 +494,7 @@ void named_pipe_packet_process(struct tevent_req *subreq)
/* Wait for the next packet */
subreq = dcerpc_read_ncacn_packet_send(npc, npc->ev, npc->tstream);
if (!subreq) {
DEBUG(2, ("Failed to start receving packets\n"));
DEBUG(2, ("Failed to start receiving packets\n"));
status = NT_STATUS_NO_MEMORY;
goto fail;
}
@ -574,7 +574,7 @@ static void named_pipe_packet_done(struct tevent_req *subreq)
/* Wait for the next packet */
subreq = dcerpc_read_ncacn_packet_send(npc, npc->ev, npc->tstream);
if (!subreq) {
DEBUG(2, ("Failed to start receving packets\n"));
DEBUG(2, ("Failed to start receiving packets\n"));
sys_errno = ENOMEM;
goto fail;
}
@ -1272,7 +1272,7 @@ static void dcerpc_ncacn_packet_process(struct tevent_req *subreq)
ncacn_conn->ev_ctx,
ncacn_conn->tstream);
if (subreq == NULL) {
DEBUG(2, ("Failed to start receving packets\n"));
DEBUG(2, ("Failed to start receiving packets\n"));
status = NT_STATUS_NO_MEMORY;
goto fail;
}
@ -1343,7 +1343,7 @@ static void dcerpc_ncacn_packet_done(struct tevent_req *subreq)
ncacn_conn->ev_ctx,
ncacn_conn->tstream);
if (subreq == NULL) {
DEBUG(2, ("Failed to start receving packets\n"));
DEBUG(2, ("Failed to start receiving packets\n"));
status = NT_STATUS_NO_MEMORY;
goto fail;
}