Fix some nonempty blank lines
authorVolker Lendecke <vl@samba.org>
Tue, 20 Jan 2009 21:04:53 +0000 (22:04 +0100)
committerVolker Lendecke <vl@samba.org>
Tue, 20 Jan 2009 22:10:16 +0000 (23:10 +0100)
source3/auth/auth_compat.c
source3/include/auth.h

index ad2686c0033c08f6f5aacc30aac6f95407e73077..00d9dea816cd8eb42b49b5412bf336ba455f2d6a 100644 (file)
@@ -2,17 +2,17 @@
    Unix SMB/CIFS implementation.
    Password and authentication handling
    Copyright (C) Andrew Bartlett         2001-2002
-   
+
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
-   
+
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
-   
+
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
@@ -44,18 +44,18 @@ NTSTATUS check_plaintext_password(const char *smb_name, DATA_BLOB plaintext_pass
        if (!NT_STATUS_IS_OK(nt_status = make_auth_context_subsystem(&plaintext_auth_context))) {
                return nt_status;
        }
-       
+
        chal = plaintext_auth_context->get_ntlm_challenge(plaintext_auth_context);
-       
+
        if (!make_user_info_for_reply(&user_info, 
                                      smb_name, lp_workgroup(), chal,
                                      plaintext_password)) {
                return NT_STATUS_NO_MEMORY;
        }
-       
+
        nt_status = plaintext_auth_context->check_ntlm_password(plaintext_auth_context, 
                                                                user_info, server_info); 
-       
+
        (plaintext_auth_context->free)(&plaintext_auth_context);
        free_user_info(&user_info);
        return nt_status;
@@ -97,7 +97,7 @@ bool password_ok(const char *smb_name, DATA_BLOB password_blob)
 
        DATA_BLOB null_password = data_blob_null;
        bool encrypted = (global_encrypted_passwords_negotiated && (password_blob.length == 24 || password_blob.length > 46));
-       
+
        if (encrypted) {
                /* 
                 * The password could be either NTLM or plain LM.  Try NTLM first, 
@@ -116,7 +116,7 @@ bool password_ok(const char *smb_name, DATA_BLOB password_blob)
                if (NT_STATUS_IS_OK(pass_check_smb(smb_name, lp_workgroup(), null_password, password_blob, null_password, encrypted))) {
                        return True;
                }
-               
+
                if (NT_STATUS_IS_OK(pass_check_smb(smb_name, lp_workgroup(), password_blob, null_password, null_password, encrypted))) {
                        return True;
                }
index adcd6e943f9240e89e2e5f07cc165925075b0831..17bccce3d75979d629ceceb2e4eb26e18d592055 100644 (file)
@@ -4,17 +4,17 @@
    Unix SMB/CIFS implementation.
    Standardised Authentication types
    Copyright (C) Andrew Bartlett 2001
-   
+
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
-   
+
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
-   
+
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
@@ -25,9 +25,9 @@ typedef struct auth_usersupplied_info {
        DATA_BLOB lm_interactive_pwd;
        DATA_BLOB nt_interactive_pwd;
        DATA_BLOB plaintext_password;
-       
+
        bool encrypted;
-       
+
        bool was_mapped;              /* Did the username map actually match? */
        char *client_domain;          /* domain name string */
        char *domain;                 /* domain name after mapping */
@@ -35,7 +35,7 @@ typedef struct auth_usersupplied_info {
        char *smb_name;               /* username before mapping */
        char *wksta_name;             /* workstation name (netbios calling
                                       * name) unicode string */
-       
+
        uint32 logon_parameters;
 
 } auth_usersupplied_info;
@@ -50,16 +50,16 @@ typedef struct auth_serversupplied_info {
        struct unix_user_token utok;
 
        /* NT group information taken from the info3 structure */
-       
+
        NT_USER_TOKEN *ptok;
-       
+
        DATA_BLOB user_session_key;
        DATA_BLOB lm_session_key;
 
         char *login_server; /* which server authorized the login? */
-       
+
        struct samu *sam_account;
-       
+
        void *pam_handle;
 
        /*
@@ -118,7 +118,7 @@ typedef struct auth_methods
        DATA_BLOB (*get_chal)(const struct auth_context *auth_context,
                              void **my_private_data, 
                              TALLOC_CTX *mem_ctx);
-       
+
        /* Used to keep tabs on things like the cli for SMB server authentication */
        void *private_data;