Module: kamailio
Branch: 5.3
Commit: 4f83d158dbae4d0f854f4bea8a847c071a45d861
URL:
https://github.com/kamailio/kamailio/commit/4f83d158dbae4d0f854f4bea8a847c0…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2020-01-09T09:59:48+01:00
misc: use single quotes in formatted ruby scrip for kemi example
(cherry picked from commit 77a1698ce24620be0edc171494c4f414a5c5b5e1)
---
Modified: misc/examples/kemi/kamailio-basic-kemi-ruby.rb
---
Diff:
https://github.com/kamailio/kamailio/commit/4f83d158dbae4d0f854f4bea8a847c0…
Patch:
https://github.com/kamailio/kamailio/commit/4f83d158dbae4d0f854f4bea8a847c0…
---
diff --git a/misc/examples/kemi/kamailio-basic-kemi-ruby.rb
b/misc/examples/kemi/kamailio-basic-kemi-ruby.rb
index b02d440c97..11f96b460c 100644
--- a/misc/examples/kemi/kamailio-basic-kemi-ruby.rb
+++ b/misc/examples/kemi/kamailio-basic-kemi-ruby.rb
@@ -82,7 +82,7 @@ def ksr_route_reqinit()
end
if KSR::SANITY.sanity_check(1511, 7) < 0 then
- KSR.err("Malformed SIP message from
#{KSR::PV.get("$si")}:#{KSR::PV.get("$sp")}\n");
+ KSR.err("Malformed SIP message from
#{KSR::PV.get('$si')}:#{KSR::PV.get('$sp')}\n");
exit
end
end
@@ -292,4 +292,4 @@ def ksr_route_location()
ksr_route_relay()
exit
-end
\ No newline at end of file
+end