From 71fb0a89b48e8bd44b7c792d01380ff6711cd8d0 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 13 Sep 2017 11:38:11 -0700 Subject: netlogon_creds_cli: Rename netlogon_creds_cli_lock_fetch->get_internal Signed-off-by: Volker Lendecke Reviewed-by: Andrew Bartlett --- libcli/auth/netlogon_creds_cli.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libcli') diff --git a/libcli/auth/netlogon_creds_cli.c b/libcli/auth/netlogon_creds_cli.c index 656a3786043..6b044cd0bb9 100644 --- a/libcli/auth/netlogon_creds_cli.c +++ b/libcli/auth/netlogon_creds_cli.c @@ -707,7 +707,7 @@ struct netlogon_creds_cli_lock_state { }; static void netlogon_creds_cli_lock_done(struct tevent_req *subreq); -static NTSTATUS netlogon_creds_cli_lock_fetch( +static NTSTATUS netlogon_creds_cli_get_internal( struct netlogon_creds_cli_context *context, TALLOC_CTX *mem_ctx, struct netlogon_creds_CredentialState **pcreds); @@ -745,7 +745,7 @@ struct tevent_req *netlogon_creds_cli_lock_send(TALLOC_CTX *mem_ctx, if (context->db.g_ctx == NULL) { NTSTATUS status; - status = netlogon_creds_cli_lock_fetch( + status = netlogon_creds_cli_get_internal( context, state, &state->creds); if (tevent_req_nterror(req, status)) { return tevent_req_post(req, ev); @@ -783,7 +783,7 @@ static void netlogon_creds_cli_lock_done(struct tevent_req *subreq) } state->locked_state->is_glocked = true; - status = netlogon_creds_cli_lock_fetch(state->locked_state->context, + status = netlogon_creds_cli_get_internal(state->locked_state->context, state, &state->creds); if (tevent_req_nterror(req, status)) { return; @@ -791,7 +791,7 @@ static void netlogon_creds_cli_lock_done(struct tevent_req *subreq) tevent_req_done(req); } -static NTSTATUS netlogon_creds_cli_lock_fetch( +static NTSTATUS netlogon_creds_cli_get_internal( struct netlogon_creds_cli_context *context, TALLOC_CTX *mem_ctx, struct netlogon_creds_CredentialState **pcreds) { -- cgit v1.2.1