mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
r26231: Spell check: credentails -> credentials.
(This used to be commit 4b46888bd0
)
This commit is contained in:
parent
b5594df87d
commit
fface33dd7
@ -379,7 +379,7 @@ int cli_credentials_get_client_gss_creds(struct cli_credentials *cred,
|
||||
}
|
||||
|
||||
/**
|
||||
Set a gssapi cred_id_t into the credentails system. (Client case)
|
||||
Set a gssapi cred_id_t into the credentials system. (Client case)
|
||||
|
||||
This grabs the credentials both 'intact' and getting the krb5
|
||||
ccache out of it. This routine can be generalised in future for
|
||||
|
@ -453,7 +453,7 @@ const char **gensec_security_oids_from_ops_wrapped(TALLOC_CTX *mem_ctx,
|
||||
/**
|
||||
* Return all the security subsystems currently enabled on a GENSEC context.
|
||||
*
|
||||
* This is taken from a list attached to the cli_credentails, and
|
||||
* This is taken from a list attached to the cli_credentials, and
|
||||
* skips the OID in 'skip'. (Typically the SPNEGO OID)
|
||||
*
|
||||
*/
|
||||
|
@ -366,7 +366,7 @@ static NTSTATUS gensec_gssapi_client_start(struct gensec_security *gensec_securi
|
||||
DEBUG(3, ("Cannot reach a KDC we require to contact %s\n", principal));
|
||||
return NT_STATUS_INVALID_PARAMETER; /* Make SPNEGO ignore us, we can't go any further here */
|
||||
default:
|
||||
DEBUG(1, ("Aquiring initiator credentails failed\n"));
|
||||
DEBUG(1, ("Aquiring initiator credentials failed\n"));
|
||||
return NT_STATUS_UNSUCCESSFUL;
|
||||
}
|
||||
|
||||
|
@ -256,7 +256,7 @@ static NTSTATUS gensec_krb5_client_start(struct gensec_security *gensec_security
|
||||
DEBUG(3, ("Cannot reach a KDC we require to contact %s\n", principal));
|
||||
return NT_STATUS_INVALID_PARAMETER; /* Make SPNEGO ignore us, we can't go any further here */
|
||||
default:
|
||||
DEBUG(1, ("gensec_krb5_start: Aquiring initiator credentails failed: %s\n", error_message(ret)));
|
||||
DEBUG(1, ("gensec_krb5_start: Aquiring initiator credentials failed: %s\n", error_message(ret)));
|
||||
return NT_STATUS_UNSUCCESSFUL;
|
||||
}
|
||||
in_data.length = 0;
|
||||
|
@ -598,7 +598,7 @@ static NTSTATUS gensec_spnego_create_negTokenInit(struct gensec_security *gensec
|
||||
spnego_out.negTokenInit.reqFlags = 0;
|
||||
|
||||
if (spnego_state->state_position == SPNEGO_SERVER_START) {
|
||||
/* server credentails */
|
||||
/* server credentials */
|
||||
struct cli_credentials *creds = gensec_get_credentials(gensec_security);
|
||||
if (creds) {
|
||||
principal = cli_credentials_get_principal(creds, out_mem_ctx);
|
||||
|
@ -375,7 +375,7 @@ static NTSTATUS session_setup_spnego(struct composite_context *c,
|
||||
|
||||
status = gensec_set_credentials(session->gensec, io->in.credentials);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
DEBUG(1, ("Failed to start set GENSEC client credentails: %s\n",
|
||||
DEBUG(1, ("Failed to start set GENSEC client credentials: %s\n",
|
||||
nt_errstr(status)));
|
||||
return status;
|
||||
}
|
||||
|
@ -310,7 +310,7 @@ NTSTATUS libnet_SamSync_netlogon(struct libnet_context *ctx, TALLOC_CTX *mem_ctx
|
||||
}
|
||||
}
|
||||
|
||||
/* get NETLOGON credentails */
|
||||
/* get NETLOGON credentials */
|
||||
|
||||
nt_status = dcerpc_schannel_creds(p->conn->security_state.generic_state, samsync_ctx, &creds);
|
||||
if (!NT_STATUS_IS_OK(nt_status)) {
|
||||
|
@ -248,7 +248,7 @@ struct composite_context *dcerpc_bind_auth_send(TALLOC_CTX *mem_ctx,
|
||||
|
||||
c->status = gensec_set_credentials(sec->generic_state, credentials);
|
||||
if (!NT_STATUS_IS_OK(c->status)) {
|
||||
DEBUG(1, ("Failed to set GENSEC client credentails: %s\n",
|
||||
DEBUG(1, ("Failed to set GENSEC client credentials: %s\n",
|
||||
nt_errstr(c->status)));
|
||||
composite_error(c, c->status);
|
||||
return c;
|
||||
|
@ -316,8 +316,8 @@ static void manage_gensec_get_pw_request(enum stdio_helper_mode stdio_helper_mod
|
||||
}
|
||||
|
||||
/**
|
||||
* Callback for password credentails. This is not async, and when
|
||||
* GENSEC and the credentails code is made async, it will look rather
|
||||
* Callback for password credentials. This is not async, and when
|
||||
* GENSEC and the credentials code is made async, it will look rather
|
||||
* different.
|
||||
*/
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user