diff options
| author | 2006-03-09 00:18:20 +0000 | |
|---|---|---|
| committer | 2006-03-09 00:18:20 +0000 | |
| commit | 945dda108992cdfc83cf714a89ded949357ce125 (patch) | |
| tree | 3c2d30c401359a47a137a0ce40e05fb03b83fd40 /src/modules | |
| parent | Update to Start() credits, now refers users to /info output (diff) | |
| download | inspircd++-945dda108992cdfc83cf714a89ded949357ce125.tar.gz inspircd++-945dda108992cdfc83cf714a89ded949357ce125.tar.bz2 inspircd++-945dda108992cdfc83cf714a89ded949357ce125.zip | |
Wrong var used here, oooops
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3569 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/m_safelist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_safelist.cpp b/src/modules/m_safelist.cpp index 64f073386..09e7dc183 100644 --- a/src/modules/m_safelist.cpp +++ b/src/modules/m_safelist.cpp @@ -97,7 +97,7 @@ class ListTimer : public InspTimer WriteServ(u->fd,"321 %s Channel :Users Name",u->nick); chan = Srv->GetChannelIndex(ld->list_position); /* spool details */ - bool has_user = (u && chan->HasUser(u)); + bool has_user = (chan && chan->HasUser(u)); if ((chan) && (((!(chan->binarymodes & CM_PRIVATE)) && (!(chan->binarymodes & CM_SECRET))) || (has_user))) { /* Increment total plus linefeed */ |
