diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-02 19:31:14 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:47:09 +0100 |
commit | fface33dd731a711688b56593bb703c38090e782 (patch) | |
tree | 65317fdeb7bb1e6c0d861222383a1582ad49c6b1 /source4/auth | |
parent | b5594df87d054d203e9bfb52a49c87bc3ecf46a1 (diff) | |
download | samba-fface33dd731a711688b56593bb703c38090e782.tar.gz samba-fface33dd731a711688b56593bb703c38090e782.tar.bz2 samba-fface33dd731a711688b56593bb703c38090e782.zip |
r26231: Spell check: credentails -> credentials.
(This used to be commit 4b46888bd0195ab12190f76868719fc018baafd6)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/credentials/credentials_krb5.c | 2 | ||||
-rw-r--r-- | source4/auth/gensec/gensec.c | 2 | ||||
-rw-r--r-- | source4/auth/gensec/gensec_gssapi.c | 2 | ||||
-rw-r--r-- | source4/auth/gensec/gensec_krb5.c | 2 | ||||
-rw-r--r-- | source4/auth/gensec/spnego.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/source4/auth/credentials/credentials_krb5.c b/source4/auth/credentials/credentials_krb5.c index 01e405ad65..edc10d77c9 100644 --- a/source4/auth/credentials/credentials_krb5.c +++ b/source4/auth/credentials/credentials_krb5.c @@ -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 diff --git a/source4/auth/gensec/gensec.c b/source4/auth/gensec/gensec.c index 1da0cf631b..b3ac64fdce 100644 --- a/source4/auth/gensec/gensec.c +++ b/source4/auth/gensec/gensec.c @@ -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) * */ diff --git a/source4/auth/gensec/gensec_gssapi.c b/source4/auth/gensec/gensec_gssapi.c index dceb10e7b6..98d8a40672 100644 --- a/source4/auth/gensec/gensec_gssapi.c +++ b/source4/auth/gensec/gensec_gssapi.c @@ -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; } diff --git a/source4/auth/gensec/gensec_krb5.c b/source4/auth/gensec/gensec_krb5.c index 8ce941719f..1227a48ada 100644 --- a/source4/auth/gensec/gensec_krb5.c +++ b/source4/auth/gensec/gensec_krb5.c @@ -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; diff --git a/source4/auth/gensec/spnego.c b/source4/auth/gensec/spnego.c index 5c1c15935f..ca82980f94 100644 --- a/source4/auth/gensec/spnego.c +++ b/source4/auth/gensec/spnego.c @@ -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); |