diff options
author | Naram Qashat <cyberbotx@cyberbotx.com> | 2010-06-20 18:42:58 -0400 |
---|---|---|
committer | Naram Qashat <cyberbotx@cyberbotx.com> | 2010-06-20 18:42:58 -0400 |
commit | 381c9c8870fad4c544f29deec22ba4be3549a731 (patch) | |
tree | f5f26e2dd380910b0ddd26e3d885d6bf56d40181 /src/modules/hs_request.cpp | |
parent | 2528dc80bd1b3e6b2c09db23eb51659e30128110 (diff) |
The first of a few "CBX OCDing over code style" commits, focusing on include/* and src/* but not src/core/* or src/modules/*.
Diffstat (limited to 'src/modules/hs_request.cpp')
-rw-r--r-- | src/modules/hs_request.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/hs_request.cpp b/src/modules/hs_request.cpp index cc5637bef..574611f09 100644 --- a/src/modules/hs_request.cpp +++ b/src/modules/hs_request.cpp @@ -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); } } |