summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2013-10-27 15:19:09 +0100
committerAndreas Schneider <asn@samba.org>2013-10-28 08:26:42 +0100
commit00132ab65c1b577d7dabf665f5e32ecf2620a2ab (patch)
treee6c27678169c3831fbdcfcbaafa18b28394812d6
parent9c1c3bb4ecb47c10548c7d80784ac293cd91aa89 (diff)
downloadsamba-00132ab65c1b577d7dabf665f5e32ecf2620a2ab.tar.gz
samba-00132ab65c1b577d7dabf665f5e32ecf2620a2ab.tar.bz2
samba-00132ab65c1b577d7dabf665f5e32ecf2620a2ab.zip
rpc_server: fix a typo
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
-rw-r--r--source3/rpc_server/rpc_ep_register.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/rpc_server/rpc_ep_register.c b/source3/rpc_server/rpc_ep_register.c
index 96a3705faa..d840c2e09e 100644
--- a/source3/rpc_server/rpc_ep_register.c
+++ b/source3/rpc_server/rpc_ep_register.c
@@ -35,7 +35,7 @@ static NTSTATUS rpc_ep_try_register(TALLOC_CTX *mem_ctx,
const struct dcerpc_binding_vector *v,
struct dcerpc_binding_handle **pbh);
-struct rpc_ep_regsiter_state {
+struct rpc_ep_register_state {
struct dcerpc_binding_handle *h;
TALLOC_CTX *mem_ctx;
@@ -53,10 +53,10 @@ NTSTATUS rpc_ep_register(struct tevent_context *ev_ctx,
const struct ndr_interface_table *iface,
const struct dcerpc_binding_vector *v)
{
- struct rpc_ep_regsiter_state *state;
+ struct rpc_ep_register_state *state;
struct tevent_req *req;
- state = talloc(ev_ctx, struct rpc_ep_regsiter_state);
+ state = talloc(ev_ctx, struct rpc_ep_register_state);
if (state == NULL) {
return NT_STATUS_NO_MEMORY;
}
@@ -98,8 +98,8 @@ static void rpc_ep_monitor_loop(struct tevent_req *subreq);
static void rpc_ep_register_loop(struct tevent_req *subreq)
{
- struct rpc_ep_regsiter_state *state =
- tevent_req_callback_data(subreq, struct rpc_ep_regsiter_state);
+ struct rpc_ep_register_state *state =
+ tevent_req_callback_data(subreq, struct rpc_ep_register_state);
NTSTATUS status;
bool ok;
@@ -178,8 +178,8 @@ static NTSTATUS rpc_ep_try_register(TALLOC_CTX *mem_ctx,
*/
static void rpc_ep_monitor_loop(struct tevent_req *subreq)
{
- struct rpc_ep_regsiter_state *state =
- tevent_req_callback_data(subreq, struct rpc_ep_regsiter_state);
+ struct rpc_ep_register_state *state =
+ tevent_req_callback_data(subreq, struct rpc_ep_register_state);
struct policy_handle entry_handle;
struct dcerpc_binding map_binding;
struct epm_twr_p_t towers[10];