From 92adc26e0e5ff566005d29dfe7d87a6d3c93c8ab Mon Sep 17 00:00:00 2001 From: Paul Tinsley Date: Tue, 24 Oct 2006 02:26:25 +0000 Subject: [PATCH] Potential fix for a problem we can't seem to cause again... but the fix shouldn't be capable of causing any new problems so lets do it just incase. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3172 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- scripts/POE-Filter-FSSocket/CHANGES | 9 +++++++++ scripts/POE-Filter-FSSocket/lib/POE/Filter/FSSocket.pm | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/scripts/POE-Filter-FSSocket/CHANGES b/scripts/POE-Filter-FSSocket/CHANGES index f0dda71c99..931f21de71 100644 --- a/scripts/POE-Filter-FSSocket/CHANGES +++ b/scripts/POE-Filter-FSSocket/CHANGES @@ -1,3 +1,12 @@ +========================= +2006-10-23 00:19:14 v0_07 +========================= + + 2006-10-23 00:19:14 (r7) by ptinsley + + Potential fix for default POE modules on debian with perl 5.8.4, but I + I can't be sure because we can't make the problem happen again. + ========================= 2006-10-23 00:15:32 v0_06 ========================= diff --git a/scripts/POE-Filter-FSSocket/lib/POE/Filter/FSSocket.pm b/scripts/POE-Filter-FSSocket/lib/POE/Filter/FSSocket.pm index ea71256a17..52bfbab73d 100755 --- a/scripts/POE-Filter-FSSocket/lib/POE/Filter/FSSocket.pm +++ b/scripts/POE-Filter-FSSocket/lib/POE/Filter/FSSocket.pm @@ -106,7 +106,7 @@ use Carp qw(carp croak); use vars qw($VERSION); use base qw(POE::Filter); -$VERSION = '0.06'; +$VERSION = '0.07'; use Data::Dumper; @@ -149,7 +149,7 @@ sub new { 0, #length tracking (for Content-Length when needed) $strict, #whether we should bail on a bad parse or try and save the session $debug, #debug level - ], $class; + ], ref($class) || $class; return $self; }