Changeset 736 for branches/samba-3.5.x/source3/auth
- Timestamp:
- Nov 12, 2012, 5:38:52 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.5.x/source3/auth/auth_server.c
r414 r736 274 274 auth_serversupplied_info **server_info) 275 275 { 276 struct server_security_state *state = talloc_get_type_abort( 277 my_private_data, struct server_security_state); 278 struct cli_state *cli; 276 struct server_security_state *state = NULL; 277 struct cli_state *cli = NULL; 279 278 static bool tested_password_server = False; 280 279 static bool bad_password_server = False; … … 282 281 bool locally_made_cli = False; 283 282 283 DEBUG(10, ("check_smbserver_security: Check auth for: [%s]\n", 284 user_info->smb_name)); 285 286 if (my_private_data == NULL) { 287 DEBUG(10,("check_smbserver_security: " 288 "password server is not connected\n")); 289 return NT_STATUS_LOGON_FAILURE; 290 } 291 292 state = talloc_get_type_abort(my_private_data, struct server_security_state); 284 293 cli = state->cli; 285 294
Note:
See TracChangeset
for help on using the changeset viewer.