Author: jelmer Date: 2007-12-02 19:31:14 +0000 (Sun, 02 Dec 2007) New Revision: 26231
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=26231 Log: Spell check: credentails -> credentials. Modified: branches/SAMBA_4_0/ branches/SAMBA_4_0/source/auth/credentials/credentials_krb5.c branches/SAMBA_4_0/source/auth/gensec/gensec.c branches/SAMBA_4_0/source/auth/gensec/gensec_gssapi.c branches/SAMBA_4_0/source/auth/gensec/gensec_krb5.c branches/SAMBA_4_0/source/auth/gensec/spnego.c branches/SAMBA_4_0/source/libcli/smb_composite/sesssetup.c branches/SAMBA_4_0/source/libnet/libnet_vampire.c branches/SAMBA_4_0/source/librpc/rpc/dcerpc_auth.c branches/SAMBA_4_0/source/utils/ntlm_auth.c Changeset: Property changes on: branches/SAMBA_4_0 ___________________________________________________________________ Name: bzr:revision-info ...skipped... Name: bzr:revision-id:v3-trunk0 ...skipped... Modified: branches/SAMBA_4_0/source/auth/credentials/credentials_krb5.c =================================================================== --- branches/SAMBA_4_0/source/auth/credentials/credentials_krb5.c 2007-12-02 19:27:49 UTC (rev 26230) +++ branches/SAMBA_4_0/source/auth/credentials/credentials_krb5.c 2007-12-02 19:31:14 UTC (rev 26231) @@ -379,7 +379,7 @@ } /** - 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 Modified: branches/SAMBA_4_0/source/auth/gensec/gensec.c =================================================================== --- branches/SAMBA_4_0/source/auth/gensec/gensec.c 2007-12-02 19:27:49 UTC (rev 26230) +++ branches/SAMBA_4_0/source/auth/gensec/gensec.c 2007-12-02 19:31:14 UTC (rev 26231) @@ -453,7 +453,7 @@ /** * 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) * */ Modified: branches/SAMBA_4_0/source/auth/gensec/gensec_gssapi.c =================================================================== --- branches/SAMBA_4_0/source/auth/gensec/gensec_gssapi.c 2007-12-02 19:27:49 UTC (rev 26230) +++ branches/SAMBA_4_0/source/auth/gensec/gensec_gssapi.c 2007-12-02 19:31:14 UTC (rev 26231) @@ -366,7 +366,7 @@ 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; } Modified: branches/SAMBA_4_0/source/auth/gensec/gensec_krb5.c =================================================================== --- branches/SAMBA_4_0/source/auth/gensec/gensec_krb5.c 2007-12-02 19:27:49 UTC (rev 26230) +++ branches/SAMBA_4_0/source/auth/gensec/gensec_krb5.c 2007-12-02 19:31:14 UTC (rev 26231) @@ -256,7 +256,7 @@ 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; Modified: branches/SAMBA_4_0/source/auth/gensec/spnego.c =================================================================== --- branches/SAMBA_4_0/source/auth/gensec/spnego.c 2007-12-02 19:27:49 UTC (rev 26230) +++ branches/SAMBA_4_0/source/auth/gensec/spnego.c 2007-12-02 19:31:14 UTC (rev 26231) @@ -598,7 +598,7 @@ 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); Modified: branches/SAMBA_4_0/source/libcli/smb_composite/sesssetup.c =================================================================== --- branches/SAMBA_4_0/source/libcli/smb_composite/sesssetup.c 2007-12-02 19:27:49 UTC (rev 26230) +++ branches/SAMBA_4_0/source/libcli/smb_composite/sesssetup.c 2007-12-02 19:31:14 UTC (rev 26231) @@ -375,7 +375,7 @@ 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; } Modified: branches/SAMBA_4_0/source/libnet/libnet_vampire.c =================================================================== --- branches/SAMBA_4_0/source/libnet/libnet_vampire.c 2007-12-02 19:27:49 UTC (rev 26230) +++ branches/SAMBA_4_0/source/libnet/libnet_vampire.c 2007-12-02 19:31:14 UTC (rev 26231) @@ -310,7 +310,7 @@ } } - /* 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)) { Modified: branches/SAMBA_4_0/source/librpc/rpc/dcerpc_auth.c =================================================================== --- branches/SAMBA_4_0/source/librpc/rpc/dcerpc_auth.c 2007-12-02 19:27:49 UTC (rev 26230) +++ branches/SAMBA_4_0/source/librpc/rpc/dcerpc_auth.c 2007-12-02 19:31:14 UTC (rev 26231) @@ -248,7 +248,7 @@ 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; Modified: branches/SAMBA_4_0/source/utils/ntlm_auth.c =================================================================== --- branches/SAMBA_4_0/source/utils/ntlm_auth.c 2007-12-02 19:27:49 UTC (rev 26230) +++ branches/SAMBA_4_0/source/utils/ntlm_auth.c 2007-12-02 19:31:14 UTC (rev 26231) @@ -316,8 +316,8 @@ } /** - * 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. */
