diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/bs_info.c | 1 | ||||
-rw-r--r-- | src/modulemanager.cpp | 1 | ||||
-rw-r--r-- | src/protocol/bahamut.c | 4 |
3 files changed, 2 insertions, 4 deletions
diff --git a/src/core/bs_info.c b/src/core/bs_info.c index b72e6542e..8404d96e4 100644 --- a/src/core/bs_info.c +++ b/src/core/bs_info.c @@ -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); diff --git a/src/modulemanager.cpp b/src/modulemanager.cpp index 3ff8835f6..f38a9eade 100644 --- a/src/modulemanager.cpp +++ b/src/modulemanager.cpp @@ -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; diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c index 536da1bad..d512f93c8 100644 --- a/src/protocol/bahamut.c +++ b/src/protocol/bahamut.c @@ -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 */ |