aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Log.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2009-07-31 11:29:28 +0800
committermegamage <none@none>2009-07-31 11:29:28 +0800
commit0fcadd9d257fc716e7dc90b4034f33280f4dcb14 (patch)
treec15f3e0a9882eaa99bac40058b73151f811efd75 /src/shared/Log.cpp
parentca271eb5dceb2ad7d82a757b9df54c6882fec1b4 (diff)
*Replace "LoginDatabase" with "loginDatabase"
--HG-- branch : trunk
Diffstat (limited to 'src/shared/Log.cpp')
-rw-r--r--src/shared/Log.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/Log.cpp b/src/shared/Log.cpp
index 8cc2dff504d..8dc23066245 100644
--- a/src/shared/Log.cpp
+++ b/src/shared/Log.cpp
@@ -359,9 +359,9 @@ void Log::outDB( LogTypes type, const char * str )
std::string new_str(str);
if (new_str.empty())
return;
- LoginDatabase.escape_string(new_str);
+ loginDatabase.escape_string(new_str);
- LoginDatabase.PExecute("INSERT INTO logs (time, realm, type, string) "
+ loginDatabase.PExecute("INSERT INTO logs (time, realm, type, string) "
"VALUES (" UI64FMTD ", %u, %u, '%s');", uint64(time(0)), realm, type, new_str.c_str());
}