diff options
| author | 2008-05-19 00:22:58 +0000 | |
|---|---|---|
| committer | 2008-05-19 00:22:58 +0000 | |
| commit | 89a8dff5f6853794364bc06ec04d05c6d988e4e2 (patch) | |
| tree | 891a2bcb2b0fbd0f9200a806920fe76b40661717 /src/modules/m_sethost.cpp | |
| parent | Commit these (diff) | |
These done
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9758 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sethost.cpp')
| -rw-r--r-- | src/modules/m_sethost.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index e781a79aa..ba2cc4f45 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -42,12 +42,12 @@ class CommandSethost : public Command } if (len == 0) { - user->WriteServ("NOTICE %s :*** SETHOST: Host must be specified", user->nick); + user->WriteServ("NOTICE %s :*** SETHOST: Host must be specified", user->nick.c_str()); return CMD_FAILURE; } if (len > 64) { - user->WriteServ("NOTICE %s :*** SETHOST: Host too long",user->nick); + user->WriteServ("NOTICE %s :*** SETHOST: Host too long",user->nick.c_str()); return CMD_FAILURE; } |
