1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 18:06:39 +02:00

Various small warning fixes.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1668 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rburchell
2008-11-14 20:02:06 +00:00
parent 9dad4ddb93
commit e289e5ade0
4 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ class User
char *nickTrack; /* Nick Tracking */
time_t timestamp; /* Timestamp of the nick */
time_t my_signon; /* When did _we_ see the user? */
uint32 svid; /* Services ID */
time_t svid; /* Services ID */
uint32 mode; /* See below */
char *uid; /* Univeral ID */
-1
View File
@@ -64,7 +64,6 @@ int do_info(User * u)
if (!query)
syntax_error(s_BotServ, u, "INFO", BOT_INFO_SYNTAX);
else if ((bi = findbot(query))) {
char buf[BUFSIZE];
struct tm *tm;
notice_lang(s_BotServ, u, BOT_INFO_BOT_HEADER, bi->nick);
-1
View File
@@ -134,7 +134,6 @@ static int encryptionModuleLoaded()
int ModuleManager::LoadModule(const std::string &modname, User * u)
{
int len;
const char *err;
Module * (*func) (const std::string &);
int ret = 0;
+2 -2
View File
@@ -531,7 +531,7 @@ class BahamutIRCdProto : public IRCDProto
/* SVSHOLD - set */
void SendSVSHold(const char *nick)
{
send_cmd(ServerName, "SVSHOLD %s %d :%s", nick, NSReleaseTimeout, "Being held for registered user");
send_cmd(ServerName, "SVSHOLD %s %ld :%s", nick, (unsigned int)NSReleaseTimeout, "Being held for registered user");
}
/* SVSHOLD - release */
@@ -638,7 +638,7 @@ class BahamutIRCdProto : public IRCDProto
// Calculate the time left before this would expire, capping it at 2 days
time_t timeleft = expires - time(NULL);
if (timeleft > 172800) timeleft = 172800;
send_cmd(NULL, "AKILL %s %s %d %s %ld :%s", host, user, timeleft, who, static_cast<long>(time(NULL)), reason);
send_cmd(NULL, "AKILL %s %s %d %s %ld :%s", host, user, (unsigned int)timeleft, who, static_cast<long>(time(NULL)), reason);
}
/* SVSKILL */