From cd71c5746b7fb40349b13b6a3f80f85a7b1a4fa8 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 22 Jul 2011 09:34:29 +0200 Subject: s3:torture: use cli_state_disconnect() to close the socket on SIGALRM metze --- source3/torture/torture.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/torture') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index fbfe52d83f..c197de98cb 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -2501,7 +2501,7 @@ fail: */ static bool got_alarm; -static int alarm_fd; +static struct cli_state *alarm_cli; static void alarm_handler(int dummy) { @@ -2510,7 +2510,7 @@ static void alarm_handler(int dummy) static void alarm_handler_parent(int dummy) { - close(alarm_fd); + cli_state_disconnect(alarm_cli); } static void do_local_lock(int read_fd, int write_fd) @@ -2661,7 +2661,7 @@ static bool run_locktest9(int dummy) } /* Wait 20 seconds for the lock. */ - alarm_fd = cli1->fd; + alarm_cli = cli1; CatchSignal(SIGALRM, alarm_handler_parent); alarm(20); -- cgit