summaryrefslogtreecommitdiff
path: root/src/net/manaserv/network.cpp
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2010-08-03 18:13:17 +0200
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2010-08-04 00:49:08 +0200
commitc3e9fbfc9a92e5d75a0d1002cfba48947718dc4d (patch)
tree59d75638ee09f7efe7bc1ab56ac3fe1ac3e4cf49 /src/net/manaserv/network.cpp
parent98abc793f8fb45d647e1e8c51cf5f38170c6b703 (diff)
downloadmana-client-c3e9fbfc9a92e5d75a0d1002cfba48947718dc4d.tar.gz
mana-client-c3e9fbfc9a92e5d75a0d1002cfba48947718dc4d.tar.bz2
mana-client-c3e9fbfc9a92e5d75a0d1002cfba48947718dc4d.tar.xz
mana-client-c3e9fbfc9a92e5d75a0d1002cfba48947718dc4d.zip
Changed the stats.xml to attributes.xml according to the server commit.
Also, fixed a compilation warning about passing a NULL value to a boolean parameter. The built-ins are kept for now. Reviewed-by: Jaxad0127.
Diffstat (limited to 'src/net/manaserv/network.cpp')
-rw-r--r--src/net/manaserv/network.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/manaserv/network.cpp b/src/net/manaserv/network.cpp
index 4b9751d7..636585c9 100644
--- a/src/net/manaserv/network.cpp
+++ b/src/net/manaserv/network.cpp
@@ -73,7 +73,7 @@ void finalize()
if (connections)
{
logger->error("Tried to shutdown the network subsystem while there "
- "are network connections left!");
+ "are network connections left!");
}
clearNetworkHandlers();
@@ -85,7 +85,7 @@ Connection *getConnection()
if (!client)
{
logger->error("Tried to instantiate a network object before "
- "initializing the network subsystem!");
+ "initializing the network subsystem!");
}
return new Connection(client);