diff options
author | Sumit Bose <sbose@redhat.com> | 2011-08-11 12:39:57 +0200 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2011-08-11 21:56:37 +0200 |
commit | ce93b4f4645b15e204590633a8047c2bfec13154 (patch) | |
tree | 49c1fb6177867209a5069d8732f05e9d8d6b3406 | |
parent | 158b208dfd75c04698f9f9196161322b16a020a2 (diff) | |
download | samba-ce93b4f4645b15e204590633a8047c2bfec13154.tar.gz samba-ce93b4f4645b15e204590633a8047c2bfec13154.tar.bz2 samba-ce93b4f4645b15e204590633a8047c2bfec13154.zip |
tevent: fix documentation for tevent_context_init_byname()
Signed-off-by: Simo Sorce <idra@samba.org>
Autobuild-User: Simo Sorce <idra@samba.org>
Autobuild-Date: Thu Aug 11 21:56:37 CEST 2011 on sn-devel-104
-rw-r--r-- | lib/tevent/tevent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tevent/tevent.h b/lib/tevent/tevent.h index 6e3ed76f57..c38f7c36e1 100644 --- a/lib/tevent/tevent.h +++ b/lib/tevent/tevent.h @@ -111,7 +111,7 @@ typedef void (*tevent_signal_handler_t)(struct tevent_context *ev, struct tevent_context *tevent_context_init(TALLOC_CTX *mem_ctx); /** - * @brief Create a event_context structure and name it. + * @brief Create a event_context structure and select a specific backend. * * This must be the first events call, and all subsequent calls pass this * event_context as the first element. Event handlers also receive this as @@ -119,7 +119,7 @@ struct tevent_context *tevent_context_init(TALLOC_CTX *mem_ctx); * * @param[in] mem_ctx The memory context to use. * - * @param[in] name The name for the tevent context. + * @param[in] name The name of the backend to use. * * @return An allocated tevent context, NULL on error. */ |