diff options
Diffstat (limited to 'src/irc/core/netsplit.c')
-rw-r--r-- | src/irc/core/netsplit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/core/netsplit.c b/src/irc/core/netsplit.c index 51f3a630..269d2556 100644 --- a/src/irc/core/netsplit.c +++ b/src/irc/core/netsplit.c @@ -135,7 +135,7 @@ static NETSPLIT_REC *netsplit_add(IRC_SERVER_REC *server, const char *nick, splitchan->op = nickrec->op; splitchan->halfop = nickrec->halfop; splitchan->voice = nickrec->voice; - splitchan->other = nickrec->other; + memcpy(splitchan->prefixes, nickrec->prefixes, sizeof(splitchan->prefixes)); rec->channels = g_slist_append(rec->channels, splitchan); } |