Ignore:
Timestamp:
Jul 2, 2011, 3:35:33 PM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update trunk to 3.5.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/auth/auth_ntlmssp.c

    r414 r596  
    127127        auth_ntlmssp_state->server_info->nss_token |= username_was_mapped;
    128128
    129         nt_status = create_local_token(auth_ntlmssp_state->server_info);
    130 
    131         if (!NT_STATUS_IS_OK(nt_status)) {
    132                 DEBUG(10, ("create_local_token failed: %s\n",
    133                         nt_errstr(nt_status)));
    134                 return nt_status;
     129        if (auth_ntlmssp_state->server_info->ptok == NULL) {
     130                nt_status = create_local_token(auth_ntlmssp_state->server_info);
     131                if (!NT_STATUS_IS_OK(nt_status)) {
     132                        DEBUG(10, ("create_local_token failed: %s\n",
     133                                   nt_errstr(nt_status)));
     134                        return nt_status;
     135                }
    135136        }
    136137
Note: See TracChangeset for help on using the changeset viewer.