1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-24 10:50:22 +03:00

s3:auth_server: make use of cli_state_is_connected()

metze
This commit is contained in:
Stefan Metzmacher 2011-07-11 13:55:18 +02:00
parent 6ec26f0c1a
commit 8c29afe14e

View File

@ -159,8 +159,8 @@ static bool send_server_keepalive(const struct timeval *now,
struct server_security_state *state = talloc_get_type_abort(
private_data, struct server_security_state);
if (!state->cli || !state->cli->initialised) {
return False;
if (!cli_state_is_connected(state->cli)) {
return false;
}
if (send_keepalive(state->cli->fd)) {
@ -285,7 +285,7 @@ static NTSTATUS check_smbserver_security(const struct auth_context *auth_context
locally_made_cli = True;
}
if (!cli || !cli->initialised) {
if (!cli_state_is_connected(cli)) {
DEBUG(1,("password server is not connected (cli not initialised)\n"));
return NT_STATUS_LOGON_FAILURE;
}