From 0513944b4e65415a697190d716551dbeb9a0fa0d Mon Sep 17 00:00:00 2001 From: Dmitri Pal Date: Sun, 26 Dec 2010 21:45:39 -0500 Subject: Rename error print function All config file processing functions start with "ini_config". The only function that does not comply is ini_print_errors. We can't rename it since it is a part of the current active interface. I marked that function needs to be removed when we remove old interface and created a copy with the correct name. I also updated unit test accordingly. --- ini/ini_print.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ini/ini_print.c') diff --git a/ini/ini_print.c b/ini/ini_print.c index 1dcfa54..1128b70 100644 --- a/ini/ini_print.c +++ b/ini/ini_print.c @@ -459,9 +459,8 @@ void print_config_parsing_errors(FILE *file, TRACE_FLOW_STRING("print_config_parsing_errors", "Exit"); } - /* Function to print errors from the list */ -void ini_print_errors(FILE *file, char **error_list) +void ini_config_print_errors(FILE *file, char **error_list) { unsigned count = 0; -- cgit