diff options
| author | 2009-10-25 15:21:45 +0000 | |
|---|---|---|
| committer | 2009-10-25 15:21:45 +0000 | |
| commit | 6fe52cbb3ba72a5ecdded3f51c8515bf75e6801f (patch) | |
| tree | 19b755377e2d830c78346930b8df27bca7d522f6 /src/commands.cpp | |
| parent | Add <config:format> to avoid breaking existing configuration files with XML e... (diff) | |
Fixes found by removing User inheritance from StreamSocket
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11975 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands.cpp')
| -rw-r--r-- | src/commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index a1a190502..9de3bbead 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -117,7 +117,7 @@ CmdResult SplitCommand::Handle(const std::vector<std::string>& parms, User* u) return HandleRemote(parms, IS_REMOTE(u)); if (IS_SERVER(u)) return HandleServer(parms, IS_SERVER(u)); - ServerInstance->Logs->Log("COMMAND", ERROR, "Unknown user type in command (fd=%d)!", u->GetFd()); + ServerInstance->Logs->Log("COMMAND", ERROR, "Unknown user type in command (uuid=%s)!", u->uuid.c_str()); return CMD_INVALID; } |
