Module: kamailio Branch: master Commit: 60cf4502bbc55b4b8d246c3967dd8cae87e95c45 URL: https://github.com/kamailio/kamailio/commit/60cf4502bbc55b4b8d246c3967dd8cae...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: GitHub noreply@github.com Date: 2020-11-30T09:14:18+01:00
Merge pull request #2566 from sergey-safarov/master
lost: fixed typo
---
Modified: src/modules/lost/doc/lost_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/60cf4502bbc55b4b8d246c3967dd8cae... Patch: https://github.com/kamailio/kamailio/commit/60cf4502bbc55b4b8d246c3967dd8cae...
---
diff --git a/src/modules/lost/doc/lost_admin.xml b/src/modules/lost/doc/lost_admin.xml index c8be8f668b..c5d4f5ad69 100644 --- a/src/modules/lost/doc/lost_admin.xml +++ b/src/modules/lost/doc/lost_admin.xml @@ -168,7 +168,7 @@ <title>Set <varname>location_type</varname> parameter</title> <programlisting format="linespecific"> ... - modparam("http_client", "location_type, "civic geodetic locationURI") + modparam("lost", "location_type, "civic geodetic locationURI") ... </programlisting> </example> @@ -228,7 +228,7 @@ $var(id) = "sip:alice@atlanta"; $var(res) = lost_held_query("heldsrv", "$var(id)" , "$var(pidf)", "$var(url)", "$var(err)"); xlog("L_INFO", "HELD locationRequest: Result code $var(res)\nUrl: $var(url)\n$var(pidf)"); ... -$var(res) = lost_held_query("heldsrv", "$var(pidf)", "$var(url)"", "$var(err)"); +$var(res) = lost_held_query("heldsrv", "$var(pidf)", "$var(url)", "$var(err)"); xlog("L_INFO", "HELD locationRequest: Result code $var(res)\nUrl: $var(url)\n$var(pidf)\n"); ... </programlisting>