From bb132a716628725c425e150565c2eb0a9a02f793 Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Tue, 10 Jan 2017 20:42:30 +0100 Subject: [PATCH] permissions: fixed rpc fault messages for several commands --- src/modules/permissions/rpc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/permissions/rpc.c b/src/modules/permissions/rpc.c index feaa2fdb551..99be594e96f 100644 --- a/src/modules/permissions/rpc.c +++ b/src/modules/permissions/rpc.c @@ -87,7 +87,7 @@ void rpc_address_dump(rpc_t* rpc, void* c) { return; } if(addr_hash_table_rpc_print(*addr_hash_table, rpc, c) < 0 ) { - LM_DBG("failed to print a subnet_table dump\n"); + LM_DBG("failed to print address table dump\n"); } return; } @@ -102,7 +102,7 @@ void rpc_subnet_dump(rpc_t* rpc, void* c) { return; } if(subnet_table_rpc_print(*subnet_table, rpc, c) < 0) { - LM_DBG("failed to print a subnet_table dump\n"); + LM_DBG("failed to pria subnet table dump\n"); } return; @@ -119,7 +119,7 @@ void rpc_domain_name_dump(rpc_t* rpc, void* c) { return; } if ( domain_name_table_rpc_print(*domain_list_table, rpc, c) < 0 ) { - LM_DBG("failed to print a subnet_table dump\n"); + LM_DBG("failed to print domain table dump\n"); } return; }