From: Volker Lendecke Date: Mon, 18 May 2020 08:38:41 +0000 (+0200) Subject: tevent: Fix a tevent tutorial error X-Git-Tag: ldb-2.2.0~453 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ec312ee6fe5eecc79e9212ee93de332d99bc3f4c;p=thirdparty%2Fsamba.git tevent: Fix a tevent tutorial error We don't pass a tevent_req but a tevent_context to the _send function Signed-off-by: Volker Lendecke Reviewed-by: Stefan Metzmacher Autobuild-User(master): Stefan Metzmacher Autobuild-Date(master): Tue May 19 12:07:42 UTC 2020 on sn-devel-184 --- diff --git a/lib/tevent/tevent.h b/lib/tevent/tevent.h index 3c3e3cc2cef..dc68a1d3f69 100644 --- a/lib/tevent/tevent.h +++ b/lib/tevent/tevent.h @@ -669,7 +669,7 @@ void tevent_get_trace_callback(struct tevent_context *ev, * * @code * struct tevent_req *computation_send(TALLOC_CTX *mem_ctx, - * struct tevent_req *ev, + * struct tevent_context *ev, * ... further args); * int computation_recv(struct tevent_req *req, ... further output args); * @endcode