diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-04-01 01:27:02 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-04-01 01:27:02 +0200 |
commit | 12872e3d4b942d10c4dc1ec9e099345b474ac874 (patch) | |
tree | 74445ff4ed0a28e61c9523d8de9039bd5e9107e1 /src/modules/m_spanningtree/netburst.cpp | |
parent | d1a88f0957aeef918af4cea5dcf87892df755130 (diff) |
Change User::GetIPString() to return const std::string&
Diffstat (limited to 'src/modules/m_spanningtree/netburst.cpp')
-rw-r--r-- | src/modules/m_spanningtree/netburst.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/netburst.cpp b/src/modules/m_spanningtree/netburst.cpp index 5248ea897..2f43c92a1 100644 --- a/src/modules/m_spanningtree/netburst.cpp +++ b/src/modules/m_spanningtree/netburst.cpp @@ -256,7 +256,7 @@ void TreeSocket::SendUsers() u->second->host.c_str(), /* 3: Displayed Host */ u->second->dhost.c_str(), /* 4: Real host */ u->second->ident.c_str(), /* 5: Ident */ - u->second->GetIPString(), /* 6: IP string */ + u->second->GetIPString().c_str(), /* 6: IP string */ (unsigned long)u->second->signon, /* 7: Signon time for WHOWAS */ u->second->FormatModes(true), /* 8...n: Modes and params */ u->second->fullname.c_str()); /* size-1: GECOS */ |