summaryrefslogtreecommitdiff
path: root/modules/core
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-03-01 17:22:54 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-03-01 17:22:54 +0000
commit62d98b1aa43bd45ee3fcbc3475025fcc717e193e (patch)
treed86139f69e86424108b67fd4fd925ecec7d45df0 /modules/core
parent8d15178d62ea6028c51ee39f0e810865423cd73c (diff)
- white-space changes / style cleanups
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3080 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/core')
-rw-r--r--modules/core/m_nick.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/core/m_nick.c b/modules/core/m_nick.c
index 8e81721..6635f15 100644
--- a/modules/core/m_nick.c
+++ b/modules/core/m_nick.c
@@ -326,15 +326,13 @@ nick_from_server(struct Client *client_p, struct Client *source_p, int parc,
}
sendto_common_channels_local(source_p, 1, 0, ":%s!%s@%s NICK :%s",
- source_p->name,source_p->username,
+ source_p->name, source_p->username,
source_p->host, nick);
whowas_add_history(source_p, 1);
- sendto_server(client_p, CAP_TS6, NOCAPS,
- ":%s NICK %s :%lu",
+ sendto_server(client_p, CAP_TS6, NOCAPS, ":%s NICK %s :%lu",
ID(source_p), nick, (unsigned long)source_p->tsinfo);
- sendto_server(client_p, NOCAPS, CAP_TS6,
- ":%s NICK %s :%lu",
+ sendto_server(client_p, NOCAPS, CAP_TS6, ":%s NICK %s :%lu",
source_p->name, nick, (unsigned long)source_p->tsinfo);
}