summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-08 23:45:37 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-08 23:45:37 +0000
commita1daff1996dfbfa5945ee947b2398bc3185f1184 (patch)
tree8f36eb8871fe1cf768c0e853cf952d59f5a22e19
parent938924e3729b5cdba0b87e9c932098fe08e88453 (diff)
Reformat according to coding guidelines.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3564 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/cmd_version.cpp37
1 files changed, 20 insertions, 17 deletions
diff --git a/src/cmd_version.cpp b/src/cmd_version.cpp
index 59949ee3d..8e80e3778 100644
--- a/src/cmd_version.cpp
+++ b/src/cmd_version.cpp
@@ -1,4 +1,4 @@
-/* +------------------------------------+
+/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
@@ -54,23 +54,26 @@ extern InspIRCd* ServerInstance;
void cmd_version::Handle (char **parameters, int pcnt, userrec *user)
{
+ std::stringstream out(Config->data005);
+ std::string token = "";
+ std::string line5 = "";
+ int token_counter = 0;
+
WriteServ(user->fd,"351 %s :%s",user->nick,ServerInstance->GetVersionString().c_str());
- std::stringstream out(Config->data005);
- std::string token = "";
- std::string line5 = "";
- int token_counter = 0;
- while (!out.eof())
- {
- out >> token;
- line5 = line5 + token + " ";
- token_counter++;
- if ((token_counter >= 13) || (out.eof() == true))
- {
- WriteServ(user->fd,"005 %s %s:are supported by this server",user->nick,line5.c_str());
- line5 = "";
- token_counter = 0;
- }
- }
+
+ while (!out.eof())
+ {
+ out >> token;
+ line5 = line5 + token + " ";
+ token_counter++;
+
+ if ((token_counter >= 13) || (out.eof() == true))
+ {
+ WriteServ(user->fd,"005 %s %s:are supported by this server",user->nick,line5.c_str());
+ line5 = "";
+ token_counter = 0;
+ }
+ }
}