Skip to content

Commit

Permalink
permissions: fixed rpc fault messages for several commands
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Jan 10, 2017
1 parent 83c5867 commit bb132a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/permissions/rpc.c
Expand Up @@ -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;
}
Expand All @@ -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");

This comment has been minimized.

Copy link
@amessina

amessina Jan 11, 2017

Contributor

spelling error

}

return;
Expand All @@ -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;
}
Expand Down

0 comments on commit bb132a7

Please sign in to comment.