summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mode.cpp2
-rw-r--r--src/userprocess.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mode.cpp b/src/mode.cpp
index ebf18b1cf..4573cca07 100644
--- a/src/mode.cpp
+++ b/src/mode.cpp
@@ -483,7 +483,7 @@ void ModeParser::Process(const char** parameters, int pcnt, userrec *user, bool
parameter = parameters[parameter_counter++];
/* Yerk, invalid! */
- if ((parameter.find(':', 0, 1) == 0) || (parameter.rfind(' ') != std::string::npos))
+ if ((parameter.find(':') == 0) || (parameter.rfind(' ') != std::string::npos))
parameter.clear();
}
else
diff --git a/src/userprocess.cpp b/src/userprocess.cpp
index 36523e522..b27844fb6 100644
--- a/src/userprocess.cpp
+++ b/src/userprocess.cpp
@@ -275,7 +275,7 @@ void InspIRCd::DoBackgroundUserStuff(time_t TIME)
/* Everybody loves boobies. */
time_t time = this->Time(false) - (curr->nping - curr->pingmax);
char message[MAXBUF];
- snprintf(message, MAXBUF, "Ping timeout: %d second%s", time, time > 1 ? "s" : "");
+ snprintf(message, MAXBUF, "Ping timeout: %ld second%s", time, time > 1 ? "s" : "");
curr->muted = true;
GlobalCulls.AddItem(curr, message);
curr->lastping = 1;