Fix exit code values

- Change all exit codes to match the standard of 0 for success
and 1 for error

- Add empty shared folder to utils/defaults for shared_memory
This commit is contained in:
j883376
2013-06-21 22:54:28 -04:00
parent 76e25f75fa
commit 2a39449f6e
7 changed files with 60 additions and 49 deletions
+4 -4
View File
@@ -69,7 +69,7 @@ int main() {
_log(QUERYSERV__INIT, "Loading server configuration failed.");
return(1);
return 1;
}
Config = queryservconfig::get();
@@ -90,16 +90,16 @@ int main() {
Config->QSDatabaseDB.c_str(),
Config->QSDatabasePort)) {
_log(WORLD__INIT_ERR, "Cannot continue without a database connection.");
return(1);
return 1;
}
if (signal(SIGINT, CatchSignal) == SIG_ERR) {
_log(QUERYSERV__ERROR, "Could not set signal handler");
return 0;
return 1;
}
if (signal(SIGTERM, CatchSignal) == SIG_ERR) {
_log(QUERYSERV__ERROR, "Could not set signal handler");
return 0;
return 1;
}
worldserver = new WorldServer;