clean up comments for core_load_override

This commit is contained in:
radius 2015-04-06 20:07:44 -05:00
parent 1dd32a8da4
commit 931c818038
2 changed files with 17 additions and 1 deletions

View File

@ -1742,7 +1742,15 @@ bool config_load_override(void)
return false;
}
bool core_unload_override(void)
/**
* config_unload_override:
*
* Unloads configuration overrides if overrides are active.
*
*
* Returns: false if there was an error.
*/
bool core_unload_override(void)
{
global_t *global = global_get_ptr();
settings_t *settings = config_get_ptr();

View File

@ -412,6 +412,14 @@ void config_load(void);
*/
bool config_load_override(void);
/**
* config_unload_override:
*
* Unloads configuration overrides if overrides are active.
*
*
* Returns: false if there was an error.
*/
bool config_unload_override(void);
/**