Module: kamailio Branch: master Commit: 6a7c8c232132078b97bd3023efaed30f369cfe63 URL: https://github.com/kamailio/kamailio/commit/6a7c8c232132078b97bd3023efaed30f...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2025-02-18T13:21:25+01:00
etc/kamailio.cfg: use send_reply_error() instead of sl_reply_error()
---
Modified: etc/kamailio.cfg
---
Diff: https://github.com/kamailio/kamailio/commit/6a7c8c232132078b97bd3023efaed30f... Patch: https://github.com/kamailio/kamailio/commit/6a7c8c232132078b97bd3023efaed30f...
---
diff --git a/etc/kamailio.cfg b/etc/kamailio.cfg index a06e09fdc77..a46f5734bfc 100644 --- a/etc/kamailio.cfg +++ b/etc/kamailio.cfg @@ -634,7 +634,7 @@ route[RELAY] { }
if (!t_relay()) { - sl_reply_error(); + send_reply_error(); } exit; } @@ -742,7 +742,7 @@ route[REGISTRAR] { #!endif } if (!save("location")) { - sl_reply_error(); + send_reply_error(); } exit; } @@ -808,7 +808,7 @@ route[PRESENCE] { msg_apply_changes(); #!endif if (!t_newtran()) { - sl_reply_error(); + send_reply_error(); exit; }