From 381c9c8870fad4c544f29deec22ba4be3549a731 Mon Sep 17 00:00:00 2001 From: Naram Qashat Date: Sun, 20 Jun 2010 18:42:58 -0400 Subject: The first of a few "CBX OCDing over code style" commits, focusing on include/* and src/* but not src/core/* or src/modules/*. --- src/modules/hs_request.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/hs_request.cpp') 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 >::iterator it; + std::list >::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); } } -- cgit