Changeset 596 for trunk/server/source3/auth/auth_ntlmssp.c
- Timestamp:
- Jul 2, 2011, 3:35:33 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/auth/auth_ntlmssp.c
r414 r596 127 127 auth_ntlmssp_state->server_info->nss_token |= username_was_mapped; 128 128 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 } 135 136 } 136 137
Note:
See TracChangeset
for help on using the changeset viewer.