]> git.etc.gen.nz Git - spong.git/commitdiff
added close for FH in eval block for check_tcp
authorStephen L Johnson <sjohnson@monsters.org>
Tue, 17 Apr 2001 02:30:17 +0000 (02:30 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Tue, 17 Apr 2001 02:30:17 +0000 (02:30 +0000)
src/spong-network.pl

index 8758022e4e7054ebf64f737b5139bea09c0e2dcf..5ae3e8c9086e1988d2ea890bc8110c767e174c5f 100755 (executable)
@@ -17,7 +17,7 @@
 # (2) Converted checks to new plugin mechanism (Stephen Johnson May 28, 1999)
 #     Added user-configurable escalation mechanism
 #
-# $Id: spong-network.pl,v 1.32 2001/02/09 01:59:38 sljohnson Exp $
+# $Id: spong-network.pl,v 1.33 2001/04/17 02:30:17 sljohnson Exp $
 
 use Carp;
 use lib "@@LIBDIR@@";
@@ -368,6 +368,7 @@ sub check_tcp {
       select((select(SOCK), $| = 1)[0]);
       print SOCK "$data";
       recv( SOCK, $line, 256, 0 );  # just grab a chunk from the service.
+     close( SOCK ) || die "close: $!";
    };
    alarm(0);
    close( SOCK ) || die "close: $!";  # close even if our alarm went off