summaryrefslogtreecommitdiff
path: root/misc/freeswitch/scripts/common
diff options
context:
space:
mode:
authorPeter Kozak <spag@golwen.net>2013-03-11 03:37:54 -0400
committerPeter Kozak <spag@golwen.net>2013-03-11 03:37:54 -0400
commit2a95c9611ea922921eef5fb8e414a8b9262f9c06 (patch)
treeb93d045b970dd290c4608a32148bc77732e72566 /misc/freeswitch/scripts/common
parent2138e12778987507ff9fb11c2f1d913f39be802e (diff)
event data missing
Diffstat (limited to 'misc/freeswitch/scripts/common')
-rw-r--r--misc/freeswitch/scripts/common/perimeter.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/freeswitch/scripts/common/perimeter.lua b/misc/freeswitch/scripts/common/perimeter.lua
index 8ad38d3..288e8a2 100644
--- a/misc/freeswitch/scripts/common/perimeter.lua
+++ b/misc/freeswitch/scripts/common/perimeter.lua
@@ -100,7 +100,7 @@ function Perimeter.check(self, event)
end
if not event.key then
self.log:warning('[perimeter] PERIMETER_CHECK - no key');
- for key, value in pairs() do
+ for key, value in pairs(event) do
self.log:debug('[perimeter] PERIMETER_CHECK event_data - "', key, '" = "', value, '"');
end
return;