1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r3613: fixed a typo

This commit is contained in:
Andrew Tridgell 2004-11-08 02:43:49 +00:00 committed by Gerald (Jerry) Carter
parent 47d67c6e5b
commit 891e3097ee

View File

@ -201,7 +201,7 @@ static NTSTATUS gensec_start_mech(struct gensec_security *gensec_security)
if (gensec_security->ops->client_start) {
status = gensec_security->ops->client_start(gensec_security);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(1, ("Faild to start GENSEC client mech %s: %s\n",
DEBUG(1, ("Failed to start GENSEC client mech %s: %s\n",
gensec_security->ops->name, nt_errstr(status)));
}
return status;
@ -210,7 +210,7 @@ static NTSTATUS gensec_start_mech(struct gensec_security *gensec_security)
if (gensec_security->ops->server_start) {
status = gensec_security->ops->server_start(gensec_security);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(1, ("Faild to start GENSEC server mech %s: %s\n",
DEBUG(1, ("Failed to start GENSEC server mech %s: %s\n",
gensec_security->ops->name, nt_errstr(status)));
}
return status;