diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-04 06:47:22 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-04 06:47:22 +0000 |
commit | b450c430626cd3034844a749874cce3d2259704a (patch) | |
tree | 500e282c3e042821e8d75baba483e1368a71d544 /include | |
parent | 0a067563630ae108d2cca747e69adf2ead1788be (diff) |
move do_whois to cmd_whois, i'm stopping now. really.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3825 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/cmd_whois.h | 2 | ||||
-rw-r--r-- | include/commands.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/cmd_whois.h b/include/cmd_whois.h index dc62d9fac..5e62e64a3 100644 --- a/include/cmd_whois.h +++ b/include/cmd_whois.h @@ -28,6 +28,8 @@ #include "users.h" #include "channels.h" +void do_whois(userrec* user, userrec* dest,unsigned long signon, unsigned long idle, char* nick); + class cmd_whois : public command_t { public: diff --git a/include/commands.h b/include/commands.h index ff6365d78..300c81aa7 100644 --- a/include/commands.h +++ b/include/commands.h @@ -30,7 +30,6 @@ bool is_uline(const char* server); long duration(const char* str); -void do_whois(userrec* user, userrec* dest,unsigned long signon, unsigned long idle, char* nick); bool host_matches_everyone(const std::string &mask, userrec* user); bool ip_matches_everyone(const std::string &ip, userrec* user); bool nick_matches_everyone(const std::string &nick, userrec* user); |