Module: kamailio Branch: master Commit: 6a7c8c232132078b97bd3023efaed30f369cfe63 URL: https://github.com/kamailio/kamailio/commit/6a7c8c232132078b97bd3023efaed30f369cfe63
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> 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/6a7c8c232132078b97bd3023efaed30f369cfe63.diff Patch: https://github.com/kamailio/kamailio/commit/6a7c8c232132078b97bd3023efaed30f369cfe63.patch --- 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; } _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
