ctdb: fix typos
authorVolker Lendecke <vl@samba.org>
Fri, 7 May 2021 15:36:58 +0000 (17:36 +0200)
committerKarolin Seeger <kseeger@samba.org>
Tue, 25 May 2021 08:56:09 +0000 (08:56 +0000)
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>
(cherry picked from commit f188c9d732e4b9b3d37c4cb09608aba747845997)

ctdb/tests/src/run_event_test.c

index cfe5f161d1d82aeabc743b62faa4a8a1931017f4..3afad557ae9d57b55d66606f1f1c7ba9bd3f5953 100644 (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;
        }