]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_info/cmd_version.cpp
Fix the base path being used for more than just the install prefix.
[user/henk/code/inspircd.git] / src / coremods / core_info / cmd_version.cpp
index 9ec0108b13123ed675572ebf88debae05af44aa3..d3c26a235be50f08433f3232ab5314a6760808fa 100644 (file)
@@ -1,8 +1,13 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
+ *   Copyright (C) 2014 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2013, 2018-2019 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
+ *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
- *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2006, 2010 Craig Edwards <brain@inspircd.org>
  *
  * This file is part of InspIRCd.  InspIRCd is free software: you can
  * redistribute it and/or modify it under the terms of the GNU General Public
@@ -27,10 +32,14 @@ CommandVersion::CommandVersion(Module* parent)
        syntax = "[<servername>]";
 }
 
-CmdResult CommandVersion::Handle (const std::vector<std::string>&, User *user)
+CmdResult CommandVersion::Handle(User* user, const Params& parameters)
 {
-       std::string version = ServerInstance->GetVersionString((user->IsOper()));
-       user->WriteNumeric(RPL_VERSION, version);
+       Numeric::Numeric numeric(RPL_VERSION);
+       irc::tokenstream tokens(ServerInstance->GetVersionString(user->IsOper()));
+       for (std::string token; tokens.GetTrailing(token); )
+               numeric.push(token);
+       user->WriteNumeric(numeric);
+
        LocalUser *lu = IS_LOCAL(user);
        if (lu != NULL)
        {