fix quotes

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2051 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2006-07-23 00:42:27 +00:00
parent 8aabcd4bdf
commit 4ef2d76948
1 changed files with 1 additions and 5 deletions

View File

@ -34,11 +34,7 @@ while ( defined ($_ = $term->readline($prompt)) ) {
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};