[Freeswitch-svn] [commit] r2051 - freeswitch/trunk/scripts/socket
Freeswitch SVN
anthm at freeswitch.org
Sat Jul 22 20:42:28 EDT 2006
Author: anthm
Date: Sat Jul 22 20:42:27 2006
New Revision: 2051
Modified:
freeswitch/trunk/scripts/socket/fs.pl
Log:
fix quotes
Modified: freeswitch/trunk/scripts/socket/fs.pl
==============================================================================
--- freeswitch/trunk/scripts/socket/fs.pl (original)
+++ freeswitch/trunk/scripts/socket/fs.pl Sat Jul 22 20:42:27 2006
@@ -34,11 +34,7 @@
my $reply;
if ($_) {
- if ($_ =~ /^alog|^anolog/) {
- $reply = $fs2->cmd($_);
- } else {
- $reply = $fs->cmd("api $_");
- }
+ my $reply = $fs->cmd("api $_");
if ($reply->{body}) {
print $reply->{body};
More information about the Freeswitch-svn
mailing list