aboutsummaryrefslogtreecommitdiffstats
path: root/stacks/lwip_stack/lwip_src/ip_module/configuration_reader.c
diff options
context:
space:
mode:
authorrainbow_0206 <jiangwenjiang@huawei.com>2018-10-18 16:28:54 +0800
committerrainbow_0206 <jiangwenjiang@huawei.com>2018-10-22 10:42:43 +0800
commita28a94065f013f459f7b4713e623538cba8337db (patch)
tree48a42eb7b361af9c9ec28db66c7c7e16a57d3e1b /stacks/lwip_stack/lwip_src/ip_module/configuration_reader.c
parentaf0587ee6e44e9057ff6047a00fcd9015df1f5a1 (diff)
Fix: modify something that not standardized
1.replace RTP and NSPOL 2.delete the build_dpdk1805.sh Change-Id: Ic561cf5f5c8b3b4c4f42858bde5a41e4bdb45113 Signed-off-by: rainbow_0206 <jiangwenjiang@huawei.com>
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;
}