From 14c5708e8ee205c3b1f736be5131621611908255 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 25 Jul 2014 14:56:34 -0400 Subject: [PATCH] LP#1339190 initialize File::Queue correctly Signed-off-by: Galen Charlton Signed-off-by: Bill Erickson --- SIPServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SIPServer.pm b/SIPServer.pm index 0538f7e..a3595a5 100644 --- a/SIPServer.pm +++ b/SIPServer.pm @@ -44,7 +44,7 @@ use Sip::MsgType; use File::Queue; use Storable qw(freeze thaw); -my $mp_fifo = new File::Queue ( "/tmp/SIPServer.mulitplex-fifo.$$"); +my $mp_fifo = File::Queue->new( File => "/tmp/SIPServer.mulitplex-fifo.$$" ); END { $mp_fifo->delete }; use constant LOG_SIP => "local6"; # Local alias for the logging facility -- 2.11.0