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

ctdb: fix typos

Bug: https://bugzilla.samba.org/show_bug.cgi?id=14475
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
Volker Lendecke 2021-05-07 17:36:58 +02:00 committed by Ralph Boehme
parent a204e42c2f
commit f188c9d732

View File

@ -86,7 +86,7 @@ static void do_run(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
timeout,
false);
if (req == NULL) {
fprintf(stderr, "run_proc_send() failed\n");
fprintf(stderr, "run_event_send() failed\n");
return;
}
@ -94,7 +94,7 @@ static void do_run(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
status = run_event_recv(req, &ret, mem_ctx, &script_list);
if (! status) {
fprintf(stderr, "run_proc_recv() failed, ret=%d\n", ret);
fprintf(stderr, "run_event_recv() failed, ret=%d\n", ret);
return;
}