summaryrefslogtreecommitdiff
path: root/misc/freeswitch/scripts/dialplan/sip_call.lua
diff options
context:
space:
mode:
authorspag <spag@golwen.net>2013-01-07 12:57:49 +0100
committerspag <spag@golwen.net>2013-01-07 12:57:49 +0100
commitb1fb25f0d6ee481cca54f69ed50e6196595ce777 (patch)
tree62f3682808495b1e8eaae87517840dcefce4c855 /misc/freeswitch/scripts/dialplan/sip_call.lua
parent3e056a47f315a9d49d10ed7069e8270ea4fb13a5 (diff)
fixed single quotes
Diffstat (limited to 'misc/freeswitch/scripts/dialplan/sip_call.lua')
-rw-r--r--misc/freeswitch/scripts/dialplan/sip_call.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/freeswitch/scripts/dialplan/sip_call.lua b/misc/freeswitch/scripts/dialplan/sip_call.lua
index 0071075..ab6a471 100644
--- a/misc/freeswitch/scripts/dialplan/sip_call.lua
+++ b/misc/freeswitch/scripts/dialplan/sip_call.lua
@@ -65,11 +65,11 @@ end
function SipCall.call_waiting_busy(self, sip_account)
require 'common.str'
if common.str.to_b(sip_account.record.call_waiting) then
- self.log:info('GsParameter.get('CALL_WAITING') - status: enabled');
+ self.log:info('CALL_WAITING - status: enabled');
return false;
else
local state = sip_account:call_state();
- self.log:info('GsParameter.get('CALL_WAITING') - status: disabled, sip_account state: ', state);
+ self.log:info('CALL_WAITING - status: disabled, sip_account state: ', state);
return state;
end
end