diff --git a/src/mangosd/Main.cpp b/src/mangosd/Main.cpp index a6a1f0440..24c372b4e 100644 --- a/src/mangosd/Main.cpp +++ b/src/mangosd/Main.cpp @@ -160,12 +160,11 @@ extern int main(int argc, char **argv) sLog.outString("Using configuration file %s.", cfg_file); - sLog.outString("%s (Library: %s)", OPENSSL_VERSION_TEXT, SSLeay_version(SSLEAY_VERSION)); - if (SSLeay() < 0x009080bfL) + sLog.outDetail("%s (Library: %s)", OPENSSL_VERSION_TEXT, SSLeay_version(SSLEAY_VERSION)); + if (SSLeay() < 0x009080bfL ) { - sLog.outError("Outdated version of OpenSSL lib, Logins to server impossible!"); - sLog.outError("minimal required version [OpenSSL 0.9.8k]"); - return 1; + sLog.outDetail("WARNING: Outdated version of OpenSSL lib. Logins to server impossible!"); + sLog.outDetail("WARNING: Minimal required version [OpenSSL 0.9.8k]"); } ///- and run the 'Master' diff --git a/src/realmd/Main.cpp b/src/realmd/Main.cpp index 8c150eb1f..777ad05c8 100644 --- a/src/realmd/Main.cpp +++ b/src/realmd/Main.cpp @@ -163,12 +163,11 @@ extern int main(int argc, char **argv) while (pause > clock()) {} } - sLog.outString("%s (Library: %s)", OPENSSL_VERSION_TEXT, SSLeay_version(SSLEAY_VERSION)); + sLog.outDetail("%s (Library: %s)", OPENSSL_VERSION_TEXT, SSLeay_version(SSLEAY_VERSION)); if (SSLeay() < 0x009080bfL ) { - sLog.outError("Outdated version of OpenSSL lib, Logins to server impossible!"); - sLog.outError("minimal required version [OpenSSL 0.9.8k]"); - return 1; + sLog.outDetail("WARNING: Outdated version of OpenSSL lib. Logins to server impossible!"); + sLog.outDetail("WARNING: Minimal required version [OpenSSL 0.9.8k]"); } /// realmd PID file creation diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index c2d79c4dd..a075ce0b8 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7939" + #define REVISION_NR "7940" #endif // __REVISION_NR_H__