aboutsummaryrefslogtreecommitdiffstats
path: root/stacks/lwip_stack/lwip_src/ip_module/configuration_reader.c
diff options
context:
space:
mode:
authoryalei wang <wylandrea@gmail.com>2018-10-22 03:18:54 +0000
committerGerrit Code Review <gerrit@fd.io>2018-10-22 03:18:54 +0000
commite29af930882238ad7837b2ab48c0be3103e4c575 (patch)
tree7c3a2531323ec90d9778c6da59938bf497ad8350 /stacks/lwip_stack/lwip_src/ip_module/configuration_reader.c
parent0e8e4b657d5d388a6ac988b9da97f1f81740a0b0 (diff)
parenta28a94065f013f459f7b4713e623538cba8337db (diff)
Merge "Fix: modify something that not standardized"
Diffstat (limited to 'stacks/lwip_stack/lwip_src/ip_module/configuration_reader.c')
-rw-r--r--stacks/lwip_stack/lwip_src/ip_module/configuration_reader.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/stacks/lwip_stack/lwip_src/ip_module/configuration_reader.c b/stacks/lwip_stack/lwip_src/ip_module/configuration_reader.c
index 03b5998..e2334ea 100644
--- a/stacks/lwip_stack/lwip_src/ip_module/configuration_reader.c
+++ b/stacks/lwip_stack/lwip_src/ip_module/configuration_reader.c
@@ -996,13 +996,13 @@ int
init_configuration_reader ()
{
int error_number = 0;
- INITPOL_LOGINF ("RTP", "init_configuration_reader", NULL_STRING,
+ INITPOL_LOGINF ("CONFIGURATION", "init_configuration_reader", NULL_STRING,
LOG_INVALID_VALUE, MODULE_INIT_START);
g_config_data = &g_ip_module_buff;
if (init_ip_module_unix_socket_path () < 0)
{
- INITPOL_LOGERR ("RTP", "init_configuration_reader",
+ INITPOL_LOGERR ("CONFIGURATION", "init_configuration_reader",
"Error when init path", LOG_INVALID_VALUE,
MODULE_INIT_FAIL);
return -1;
@@ -1012,7 +1012,7 @@ init_configuration_reader ()
if (listen_fd < 0)
{
error_number = errno;
- INITPOL_LOGERR ("RTP", "init_configuration_reader",
+ INITPOL_LOGERR ("CONFIGURATION", "init_configuration_reader",
"when listening ip_module_unix_socket", error_number,
MODULE_INIT_FAIL);
return -1;
@@ -1027,7 +1027,7 @@ init_configuration_reader ()
return -1;
}
- INITPOL_LOGINF ("RTP", "init_configuration_reader", NULL_STRING,
+ INITPOL_LOGINF ("CONFIGURATION", "init_configuration_reader", NULL_STRING,
LOG_INVALID_VALUE, MODULE_INIT_SUCCESS);
return 0;
}