mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 01:15:35 +01:00
Build fixes
This commit is contained in:
@@ -143,7 +143,7 @@ void LoginRESTService::Run()
|
||||
{
|
||||
{ "application/json;charset=utf-8", handle_post_plugin },
|
||||
{ "application/json", handle_post_plugin },
|
||||
{ NULL }
|
||||
{ nullptr, nullptr }
|
||||
};
|
||||
|
||||
soap_register_plugin_arg(&soapServer, &http_get, handle_get_plugin);
|
||||
|
||||
@@ -25,7 +25,7 @@ bool Battlenet::SslContext::Initialize()
|
||||
#define LOAD_CHECK(fn) do { fn; \
|
||||
if (err) \
|
||||
{ \
|
||||
TC_LOG_ERROR("server.ssl", #fn ## "failed: %s", err.message().c_str()); \
|
||||
TC_LOG_ERROR("server.ssl", #fn " failed: %s", err.message().c_str()); \
|
||||
return false; \
|
||||
} } while (0)
|
||||
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
*/
|
||||
|
||||
#include "Realm.h"
|
||||
#include "StringFormat.h"
|
||||
|
||||
ip::tcp::endpoint Realm::GetAddressForClient(ip::address const& clientAddr) const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user