[Freeswitch-svn] [commit] r3172 - in freeswitch/trunk/scripts/POE-Filter-FSSocket: . lib/POE/Filter

Freeswitch SVN ptinsley at freeswitch.org
Mon Oct 23 22:26:26 EDT 2006


Author: ptinsley
Date: Mon Oct 23 22:26:25 2006
New Revision: 3172

Modified:
   freeswitch/trunk/scripts/POE-Filter-FSSocket/CHANGES
   freeswitch/trunk/scripts/POE-Filter-FSSocket/lib/POE/Filter/FSSocket.pm

Log:
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.


Modified: freeswitch/trunk/scripts/POE-Filter-FSSocket/CHANGES
==============================================================================
--- freeswitch/trunk/scripts/POE-Filter-FSSocket/CHANGES	(original)
+++ freeswitch/trunk/scripts/POE-Filter-FSSocket/CHANGES	Mon Oct 23 22:26:25 2006
@@ -1,4 +1,13 @@
 =========================
+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
 =========================
 

Modified: freeswitch/trunk/scripts/POE-Filter-FSSocket/lib/POE/Filter/FSSocket.pm
==============================================================================
--- freeswitch/trunk/scripts/POE-Filter-FSSocket/lib/POE/Filter/FSSocket.pm	(original)
+++ freeswitch/trunk/scripts/POE-Filter-FSSocket/lib/POE/Filter/FSSocket.pm	Mon Oct 23 22:26:25 2006
@@ -106,7 +106,7 @@
 use vars qw($VERSION);
 use base qw(POE::Filter);
 
-$VERSION = '0.06';
+$VERSION = '0.07';
 
 use Data::Dumper;
 
@@ -149,7 +149,7 @@
 		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;
 }



More information about the Freeswitch-svn mailing list