From 41f6d82742165c66748bff0b126f31b0b334359c Mon Sep 17 00:00:00 2001 From: cjhardee Date: Mon, 15 Feb 2010 15:40:35 +0000 Subject: [PATCH] Fixed a variable initialization to get rid of the following message: Use of uninitialized value in scalar assignment at /usr/sbin/xcatd line 624. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5220 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/sbin/xcatd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/sbin/xcatd b/xCAT-server/sbin/xcatd index 34db9e1d4..d0d23dd98 100755 --- a/xCAT-server/sbin/xcatd +++ b/xCAT-server/sbin/xcatd @@ -621,7 +621,7 @@ until ($quit) { } if ($child == 0) { - $SIG{TERM} = $SIG{INT} = (); + $SIG{TERM} = $SIG{INT} = {}; $SIG{CHLD} = \&generic_reaper; #THROTTLE $listener->close;