]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
auth: Fix typo "pass-though" -> "pass-through"
authorPavel Filipenský <pfilipensky@samba.org>
Thu, 6 Nov 2025 20:44:56 +0000 (21:44 +0100)
committerPavel Filipensky <pfilipensky@samba.org>
Tue, 13 Jan 2026 11:31:35 +0000 (11:31 +0000)
Signed-off-by: Pavel Filipenský <pfilipensky@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
auth/credentials/credentials_internal.h
auth/credentials/credentials_ntlm.c
libcli/auth/ntlm_check.c

index 72ec390ad7ec73823203d3938dcbf2994f49a067..72a8643d2975d846363bf7ac022a4547ebb27896 100644 (file)
@@ -68,7 +68,7 @@ struct cli_credentials {
        struct samr_Password *nt_hash;
        struct samr_Password *old_nt_hash;
 
-       /* Allows NTLM pass-though authentication */
+       /* Allows NTLM pass-through authentication */
        DATA_BLOB lm_response;
        DATA_BLOB lm_session_key;
        DATA_BLOB nt_response;
index 002ce4bd06042c7f8fc9c362811f55b4c7c072e8..623fc7c6af9d935860aad385e6590729443d85c3 100644 (file)
@@ -59,7 +59,7 @@ _PUBLIC_ NTSTATUS cli_credentials_get_ntlm_response(struct cli_credentials *cred
        }
 
        /* We may already have an NTLM response we prepared earlier.
-        * This is used for NTLM pass-though authentication */
+        * This is used for NTLM pass-through authentication */
        if (cred->nt_response.data || cred->lm_response.data) {
                if (cred->nt_response.length != 0) {
                        nt_response = data_blob_dup_talloc(frame,
index 6a43391e77bebabaee35182d93bf06deb40b0216..190d5e73332d39d19a459f669ac21dfc2704a658 100644 (file)
@@ -532,7 +532,7 @@ NTSTATUS ntlm_password_check(TALLOC_CTX *mem_ctx,
        }
 
        /* This is for 'LMv2' authentication.  almost NTLMv2 but limited to 24 bytes.
-          - related to Win9X, legacy NAS pass-though authentication
+          - related to Win9X, legacy NAS pass-through authentication
        */
        DEBUG(4,("ntlm_password_check: Checking LMv2 password with domain %s\n",
                client_domain ? client_domain : "<NULL>"));
@@ -621,7 +621,7 @@ NTSTATUS ntlm_password_check(TALLOC_CTX *mem_ctx,
        }
 
        /* Apparently NT accepts NT responses in the LM field
-          - I think this is related to Win9X pass-though authentication
+          - I think this is related to Win9X pass-through authentication
        */
        DEBUG(4,("ntlm_password_check: Checking NT MD4 password in LM field\n"));
        if (ntlm_auth == NTLM_AUTH_ON) {