Module: kamailio Branch: master Commit: d26b0bef2e76be55c5cb099520f221487d362b48 URL: https://github.com/kamailio/kamailio/commit/d26b0bef2e76be55c5cb099520f22148...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2024-01-24T17:17:23+01:00
tm: docs - update to use send_reply_error() when t_relay() fails
- the transaction might be already created and needs a stateful reply
---
Modified: src/modules/tm/doc/functions.xml
---
Diff: https://github.com/kamailio/kamailio/commit/d26b0bef2e76be55c5cb099520f22148... Patch: https://github.com/kamailio/kamailio/commit/d26b0bef2e76be55c5cb099520f22148...
---
diff --git a/src/modules/tm/doc/functions.xml b/src/modules/tm/doc/functions.xml index 15643ed5d47..741505ec2d2 100644 --- a/src/modules/tm/doc/functions.xml +++ b/src/modules/tm/doc/functions.xml @@ -42,7 +42,7 @@ ... if (!t_relay()) { - sl_reply_error(); + send_reply_error(); break; }; ...