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_configobj.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'ini/ini_configobj.h') diff --git a/ini/ini_configobj.h b/ini/ini_configobj.h index 913b91e..7089b62 100644 --- a/ini/ini_configobj.h +++ b/ini/ini_configobj.h @@ -300,10 +300,7 @@ int ini_config_copy(struct ini_cfgobj *ini_config, struct ini_cfgobj **ini_new); /* 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); /* Merge two configurations together creating a new one */ int ini_config_merge(struct ini_cfgobj *first, -- cgit