Add missing return statement to pihelper_read_config

Signed-off-by: William Brawner <me@wbrawner.com>
This commit is contained in:
William Brawner 2020-01-11 15:30:24 -07:00
parent e9600507ef
commit 05e8690fb0

View file

@ -54,7 +54,7 @@ void pihelper_config_set_api_key(pihole_config * config, char * api_key) {
}
pihole_config * pihelper_read_config(char * config_path) {
read_config(config_path);
return read_config(config_path);
}
int pihelper_save_config(pihole_config * config, char * config_path) {