From 4f49bbe4e69ecfeee4f2657dde6629fcf49f833a Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 8 Dec 2004 10:36:14 +0000 Subject: r4099: Spelling fixes. (This used to be commit 24d9f97bd6059d90eeead23900225e286047a862) --- source4/smb_server/negprot.c | 8 ++++---- source4/smb_server/signing.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'source4/smb_server') diff --git a/source4/smb_server/negprot.c b/source4/smb_server/negprot.c index e903969aa7..a9a213131a 100644 --- a/source4/smb_server/negprot.c +++ b/source4/smb_server/negprot.c @@ -62,7 +62,7 @@ static void reply_corep(struct smbsrv_request *req, uint16_t choice) if (req->smb_conn->signing.mandatory_signing) { smbsrv_terminate_connection(req->smb_conn, - "CORE does not support SMB signing, and it is mandetory\n"); + "CORE does not support SMB signing, and it is mandatory\n"); return; } @@ -95,7 +95,7 @@ static void reply_coreplus(struct smbsrv_request *req, uint16_t choice) if (req->smb_conn->signing.mandatory_signing) { smbsrv_terminate_connection(req->smb_conn, - "COREPLUS does not support SMB signing, and it is mandetory\n"); + "COREPLUS does not support SMB signing, and it is mandatory\n"); return; } @@ -146,7 +146,7 @@ static void reply_lanman1(struct smbsrv_request *req, uint16_t choice) if (req->smb_conn->signing.mandatory_signing) { smbsrv_terminate_connection(req->smb_conn, - "LANMAN1 does not support SMB signing, and it is mandetory\n"); + "LANMAN1 does not support SMB signing, and it is mandatory\n"); return; } @@ -195,7 +195,7 @@ static void reply_lanman2(struct smbsrv_request *req, uint16_t choice) if (req->smb_conn->signing.mandatory_signing) { smbsrv_terminate_connection(req->smb_conn, - "LANMAN2 does not support SMB signing, and it is mandetory\n"); + "LANMAN2 does not support SMB signing, and it is mandatory\n"); return; } diff --git a/source4/smb_server/signing.c b/source4/smb_server/signing.c index c397963f38..afd562340d 100644 --- a/source4/smb_server/signing.c +++ b/source4/smb_server/signing.c @@ -84,8 +84,8 @@ void srv_signing_restart(struct smbsrv_connection *smb_conn, srv_setup_signing(smb_conn, session_key, response); smb_conn->signing.next_seq_num = 2; if (smb_conn->signing.mandatory_signing) { - DEBUG(5, ("Configured for mandetory signing, 'good packet seen' forced on\n")); - /* if this is mandetory, then + DEBUG(5, ("Configured for mandatory signing, 'good packet seen' forced on\n")); + /* if this is mandatory, then * pretend we have seen a * valid packet, so we don't * turn it off */ -- cgit