]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_whowas.h
Replace most usages of "GECOS" with "real" or "real name".
[user/henk/code/inspircd.git] / include / commands / cmd_whowas.h
index aaea31864f38bc2ec53cb46811fb14406f5b47ea..2447024a1e9d1fa08d782a87ba7c10fd512410c6 100644 (file)
@@ -45,9 +45,9 @@ namespace WhoWas
                 */
                const std::string server;
 
-               /** Full name (GECOS)
+               /** Real name
                 */
-               const std::string gecos;
+               const std::string real;
 
                /** Signon time
                 */
@@ -200,9 +200,8 @@ class CommandWhowas : public Command
        CommandWhowas(Module* parent);
        /** Handle command.
         * @param parameters The parameters to the comamnd
-        * @param pcnt The number of parameters passed to teh command
         * @param user The user issuing the command
         * @return A value from CmdResult to indicate command success or failure.
         */
-       CmdResult Handle(const std::vector<std::string>& parameters, User *user);
+       CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE;
 };