s3:auth make it easier to trace auth modules
[metze/samba/wip.git] / source3 / auth / auth_builtin.c
index e2ad84834da6887fd78779e135d04cf6d4da6d1b..9e8fec9b4a0833a4057b744cf27431dedcdb7c0b 100644 (file)
@@ -40,6 +40,8 @@ static NTSTATUS check_guest_security(const struct auth_context *auth_context,
        /* mark this as 'not for me' */
        NTSTATUS nt_status = NT_STATUS_NOT_IMPLEMENTED;
 
+       DEBUG(10, ("Check auth for: [%s]\n", user_info->internal_username));
+
        if (!(user_info->internal_username 
              && *user_info->internal_username)) {
                nt_status = make_server_info_guest(NULL, server_info);
@@ -88,6 +90,9 @@ static NTSTATUS check_name_to_ntstatus_security(const struct auth_context *auth_
        NTSTATUS nt_status;
        fstring user;
        long error_num;
+
+       DEBUG(10, ("Check auth for: [%s]\n", user_info->internal_username));
+
        fstrcpy(user, user_info->smb_name);
 
        if (strnequal("NT_STATUS", user, strlen("NT_STATUS"))) {