summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/channels.h2
-rw-r--r--src/modules/m_spanningtree.cpp9
-rwxr-xr-xsrc/svn-rev.sh2
-rw-r--r--src/users.cpp3
4 files changed, 6 insertions, 10 deletions
diff --git a/include/channels.h b/include/channels.h
index 3947ffc2b..03c636d9b 100644
--- a/include/channels.h
+++ b/include/channels.h
@@ -270,7 +270,7 @@ class ucrec : public classbase
*/
chanrec *channel;
- ucrec() { /* stub */ }
+ ucrec() : uc_modes(0), channel(NULL) { /* stub */ }
virtual ~ucrec() { /* stub */ }
};
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index b06a76d15..16000a5ec 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -1107,13 +1107,10 @@ class TreeSocket : public InspSocket
ucrec a;
a.channel = NULL;
a.uc_modes = 0;
- for (int i = 0; i < MAXCHANS; i++)
- clientlist[tempnick]->chans.push_back(a);
+ clientlist[tempnick]->chans.resize(MAXCHANS);
+
+ WriteOpers("*** Client connecting at %s: %s!%s@%s [%s]",clientlist[tempnick]->server,clientlist[tempnick]->nick,clientlist[tempnick]->ident,clientlist[tempnick]->host,(char*)inet_ntoa(clientlist[tempnick]->ip4));
- if (!this->bursting)
- {
- WriteOpers("*** Client connecting at %s: %s!%s@%s [%s]",clientlist[tempnick]->server,clientlist[tempnick]->nick,clientlist[tempnick]->ident,clientlist[tempnick]->host,(char*)inet_ntoa(clientlist[tempnick]->ip4));
- }
params[7] = ":" + params[7];
DoOneToAllButSender(source,"NICK",params,source);
diff --git a/src/svn-rev.sh b/src/svn-rev.sh
index 86cc01a73..25451a415 100755
--- a/src/svn-rev.sh
+++ b/src/svn-rev.sh
@@ -1 +1 @@
-echo 3457
+echo 3459
diff --git a/src/users.cpp b/src/users.cpp
index 90c1ddcf9..e4d2546a9 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -612,8 +612,7 @@ void AddClient(int socket, int port, bool iscached, in_addr ip4)
ucrec a;
a.channel = NULL;
a.uc_modes = 0;
- for (int i = 0; i < MAXCHANS; i++)
- clientlist[tempnick]->chans.push_back(a);
+ clientlist[tempnick]->chans.resize(MAXCHANS);
fd_ref_table[socket] = clientlist[tempnick];
local_users.push_back(clientlist[tempnick]);