summaryrefslogtreecommitdiff
path: root/include/commands/cmd_whois.h
diff options
context:
space:
mode:
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-01 14:40:53 +0000
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-01 14:40:53 +0000
commit903dbea2b1c4072fcd4538bf67feaf1cf968bac9 (patch)
treea15a535ccb5b5a05f03d58c439f893c96e81b685 /include/commands/cmd_whois.h
parent3cf1ae04704b4f1706daa1077b90fd14d1e72cef (diff)
Change WriteChannelWithServ and it's _NoFormat to take a const char* servername rather than char* - although it doesn't seem to be used :<
Lose some more casts in m_spanningtree, unneeded because of above changes Make xline_set_creation_time() take const char* rather than char* for it's first parameter, lose more casts in spanningtree because of this Make do_whois take a const char* rather chan char* nick, lose yet more casts git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4095 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/commands/cmd_whois.h')
-rw-r--r--include/commands/cmd_whois.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/commands/cmd_whois.h b/include/commands/cmd_whois.h
index 5e62e64a3..75abc6053 100644
--- a/include/commands/cmd_whois.h
+++ b/include/commands/cmd_whois.h
@@ -28,7 +28,7 @@
#include "users.h"
#include "channels.h"
-void do_whois(userrec* user, userrec* dest,unsigned long signon, unsigned long idle, char* nick);
+void do_whois(userrec* user, userrec* dest,unsigned long signon, unsigned long idle, const char* nick);
class cmd_whois : public command_t
{