Changeset 137 for trunk/samba/source/auth/auth_server.c
- Timestamp:
- Jun 22, 2008, 3:30:02 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/samba/source/auth/auth_server.c
r133 r137 271 271 auth_serversupplied_info **server_info) 272 272 { 273 struct server_security_state *state = talloc_get_type_abort( 274 my_private_data, struct server_security_state); 273 275 struct cli_state *cli; 274 276 static bool tested_password_server = False; … … 277 279 bool locally_made_cli = False; 278 280 279 cli = (struct cli_state *)my_private_data;281 cli = state->cli; 280 282 281 283 if (cli) { … … 286 288 287 289 if (!cli || !cli->initialised) { 288 DEBUG(1,("password server is not connected (cli not initi lised)\n"));290 DEBUG(1,("password server is not connected (cli not initialised)\n")); 289 291 return NT_STATUS_LOGON_FAILURE; 290 292 }
Note:
See TracChangeset
for help on using the changeset viewer.