mirror of
https://github.com/anope/anope.git
synced 2026-07-02 06:06:39 +02:00
The first of a few "CBX OCDing over code style" commits, focusing on include/* and src/* but not src/core/* or src/modules/*.
This commit is contained in:
@@ -781,7 +781,7 @@ void req_send_memos(User *u, char *vIdent, char *vHost)
|
||||
{
|
||||
int z = 2;
|
||||
char host[BUFSIZE];
|
||||
std::list<std::pair<std::string, std::string> >::iterator it;
|
||||
std::list<std::pair<ci::string, ci::string> >::iterator it;
|
||||
|
||||
if (vIdent)
|
||||
snprintf(host, sizeof(host), "%s@%s", vIdent, vHost);
|
||||
@@ -792,7 +792,7 @@ void req_send_memos(User *u, char *vIdent, char *vHost)
|
||||
{
|
||||
for (it = Config.Opers.begin(); it != Config.Opers.end(); ++it)
|
||||
{
|
||||
std::string nick = it->first;
|
||||
ci::string nick = it->first;
|
||||
my_memo_lang(u, nick.c_str(), z, LNG_REQUEST_MEMO, host);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user