Ignore:
Timestamp:
Jun 22, 2008, 3:30:02 AM (17 years ago)
Author:
Paul Smedley
Message:

Update trunk to 3.2.0rc2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/samba/source/auth/auth_server.c

    r133 r137  
    271271                                         auth_serversupplied_info **server_info)
    272272{
     273        struct server_security_state *state = talloc_get_type_abort(
     274                my_private_data, struct server_security_state);
    273275        struct cli_state *cli;
    274276        static bool tested_password_server = False;
     
    277279        bool locally_made_cli = False;
    278280
    279         cli = (struct cli_state *)my_private_data;
     281        cli = state->cli;
    280282       
    281283        if (cli) {
     
    286288
    287289        if (!cli || !cli->initialised) {
    288                 DEBUG(1,("password server is not connected (cli not initilised)\n"));
     290                DEBUG(1,("password server is not connected (cli not initialised)\n"));
    289291                return NT_STATUS_LOGON_FAILURE;
    290292        } 
Note: See TracChangeset for help on using the changeset viewer.