summaryrefslogtreecommitdiff
path: root/src/users.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-10-24 16:37:29 -0400
committerAdam <Adam@anope.org>2011-10-24 16:37:29 -0400
commit7c62de1f27ee21e41b7655e9d82a227f6e2cf2b5 (patch)
tree9393c1c5b18c3d34da786556f960fe5cc010ee98 /src/users.cpp
parentccf29c013465ba4b9709c04ba4452f4454b1ebdc (diff)
parent377a7a968b6a906f262a45abea9a563ffc471938 (diff)
Merge branch '1.9' of anope.git.sf.net:/gitroot/anope/anope into 1.9
Diffstat (limited to 'src/users.cpp')
-rw-r--r--src/users.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/users.cpp b/src/users.cpp
index f09cdeed2..9d23e719f 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -15,8 +15,8 @@
Anope::insensitive_map<User *> UserListByNick;
Anope::map<User *> UserListByUID;
-int32 opcnt = 0;
-uint32 usercnt = 0, maxusercnt = 0;
+int32_t opcnt = 0;
+uint32_t usercnt = 0, maxusercnt = 0;
time_t maxusertime;
/*************************************************************************/
@@ -478,7 +478,7 @@ bool User::IsServicesOper()
if (match == false)
return false;
}
-
+
EventReturn MOD_RESULT;
FOREACH_RESULT(I_IsServicesOper, IsServicesOper(this));
if (MOD_RESULT == EVENT_STOP)
@@ -843,7 +843,7 @@ User *do_nick(const Anope::string &source, const Anope::string &nick, const Anop
if (user->server && user->server->IsULined())
exempt = true;
FOREACH_MOD(I_OnUserConnect, OnUserConnect(user, exempt));
-
+
return user;
}
else