summaryrefslogtreecommitdiff
path: root/misc/freeswitch/scripts/dialplan
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-05 23:10:07 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-05 23:10:07 +0100
commit3862734b5e0833ed108300102c68159e40ffd93a (patch)
tree4491044dbf48aea515303382e7664cf9be2cb182 /misc/freeswitch/scripts/dialplan
parent380a4cdfe5cfa573fb916ca7c2145a6062ef8198 (diff)
parent57196d838691aeba38ad7e088e83c0881a213861 (diff)
Merge branch 'replace_constants' into develop
Diffstat (limited to 'misc/freeswitch/scripts/dialplan')
-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 57f92c6..ad7188f 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('CALL_WAITING - status: enabled');
+ self.log:info('GsParameter.get('CALL_WAITING') - status: enabled');
return false;
else
local state = sip_account:call_state();
- self.log:info('CALL_WAITING - status: disabled, sip_account state: ', state);
+ self.log:info('GsParameter.get('CALL_WAITING') - status: disabled, sip_account state: ', state);
return state;
end
end