1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Print the error message if read of local config fails.

This commit is contained in:
magnus@neptunus.(none)
2004-09-15 16:01:20 +02:00
parent 0f39138756
commit 76fd06c704

View File

@@ -346,8 +346,10 @@ static bool
readLocalConfig(){
// Read local config file
LocalConfig lc;
if(!lc.init(glob.local_config_filename))
if(!lc.init(glob.local_config_filename)){
lc.printError();
return false;
}
glob.localNodeId = lc._ownNodeId;
return true;