Module: kamailio Branch: master Commit: ecd888ecbc1fe806406555328fc9e4efaa91367e URL: https://github.com/kamailio/kamailio/commit/ecd888ecbc1fe806406555328fc9e4efaa91367e
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> Date: 2026-05-21T07:33:11+02:00 prefix_route: increase the name size to match database field --- Modified: src/modules/prefix_route/tree.c --- Diff: https://github.com/kamailio/kamailio/commit/ecd888ecbc1fe806406555328fc9e4efaa91367e.diff Patch: https://github.com/kamailio/kamailio/commit/ecd888ecbc1fe806406555328fc9e4efaa91367e.patch --- diff --git a/src/modules/prefix_route/tree.c b/src/modules/prefix_route/tree.c index 52a4200041e..ba098efb769 100644 --- a/src/modules/prefix_route/tree.c +++ b/src/modules/prefix_route/tree.c @@ -49,7 +49,7 @@ enum struct tree_item { struct tree_item *digits[DIGITS]; /**< Child items for each digit */ - char name[16]; /**< Route name (for dump) */ + char name[64]; /**< Route name (for dump) */ int route; /**< Valid route number if >0 */ }; _______________________________________________ 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!
