1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 23:43:12 +02:00

Fix various format string issues.

This commit is contained in:
Sadie Powell
2024-01-08 13:06:23 +00:00
parent 5db79c1e24
commit f083795c79
22 changed files with 66 additions and 55 deletions
+1 -1
View File
@@ -351,7 +351,7 @@ private:
if (Servers::Capab.count("ESVID") > 0 && !na->nc->HasExt("UNCONFIRMED"))
IRCD->SendMode(Config->GetClient("NickServ"), u, "+d %s", na->nc->display.c_str());
else
IRCD->SendMode(Config->GetClient("NickServ"), u, "+d %d", u->signon);
IRCD->SendMode(Config->GetClient("NickServ"), u, "+d %ld", (unsigned long)u->signon);
}
void SendLogout(User *u) override