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
This commit is contained in:
Paul Tinsley 2006-10-24 02:26:25 +00:00
parent 04546b6b93
commit 92adc26e0e
2 changed files with 11 additions and 2 deletions

View File

@ -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
=========================

View File

@ -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;
}