Module: kamailio
Branch: master
Commit: 70606e3ea575228b3ccc662d6f9048aa0eb899ce
URL:
https://github.com/kamailio/kamailio/commit/70606e3ea575228b3ccc662d6f9048a…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2024-07-30T08:44:03+02:00
corex: small formatting of iflag list
---
Modified: src/modules/corex/corex_mod.c
---
Diff:
https://github.com/kamailio/kamailio/commit/70606e3ea575228b3ccc662d6f9048a…
Patch:
https://github.com/kamailio/kamailio/commit/70606e3ea575228b3ccc662d6f9048a…
---
diff --git a/src/modules/corex/corex_mod.c b/src/modules/corex/corex_mod.c
index 6739e4cee16..4f3214049b6 100644
--- a/src/modules/corex/corex_mod.c
+++ b/src/modules/corex/corex_mod.c
@@ -571,10 +571,14 @@ typedef struct _msg_iflag_name
int value;
} msg_iflag_name_t;
+/* clang-format off */
static msg_iflag_name_t _msg_iflag_list[] = {
- {str_init("USE_UAC_FROM"), FL_USE_UAC_FROM},
- {str_init("USE_UAC_TO"), FL_USE_UAC_TO},
- {str_init("UAC_AUTH"), FL_UAC_AUTH}, {{0, 0}, 0}};
+ {str_init("USE_UAC_FROM"), FL_USE_UAC_FROM},
+ {str_init("USE_UAC_TO"), FL_USE_UAC_TO},
+ {str_init("UAC_AUTH"), FL_UAC_AUTH},
+ {{0, 0}, 0}
+};
+/* clang-format on */
/**