diff options
Diffstat (limited to 'src/protocol/plexus.c')
-rw-r--r-- | src/protocol/plexus.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/protocol/plexus.c b/src/protocol/plexus.c index d1e5b000c..fc5d788f1 100644 --- a/src/protocol/plexus.c +++ b/src/protocol/plexus.c @@ -1,4 +1,4 @@ -/* PlexusIRCD IRCD functions +/*PlexusIRCD IRCD functions * (C) 2003-2005 Anope Team * Contact us at info@anope.org * @@ -6,7 +6,7 @@ * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. - **/ + */ #include "services.h" #include "pseudo.h" @@ -1208,7 +1208,7 @@ plexus_cmd_250 (char *buf) return; } - send_cmd (NULL, "250 %s ", buf); + send_cmd (NULL, "250 %s", buf); } /* 307 */ @@ -1220,7 +1220,7 @@ plexus_cmd_307 (char *buf) return; } - send_cmd (ServerName, "307 %s ", buf); + send_cmd (ServerName, "307 %s", buf); } /* 311 */ @@ -1232,7 +1232,7 @@ plexus_cmd_311 (char *buf) return; } - send_cmd (ServerName, "311 %s ", buf); + send_cmd (ServerName, "311 %s", buf); } /* 312 */ @@ -1244,7 +1244,7 @@ plexus_cmd_312 (char *buf) return; } - send_cmd (ServerName, "312 %s ", buf); + send_cmd (ServerName, "312 %s", buf); } /* 317 */ @@ -1256,7 +1256,7 @@ plexus_cmd_317 (char *buf) return; } - send_cmd (ServerName, "317 %s ", buf); + send_cmd (ServerName, "317 %s", buf); } /* 219 */ @@ -1310,7 +1310,7 @@ plexus_cmd_242 (char *buf) return; } - send_cmd (NULL, "242 %s ", buf); + send_cmd (NULL, "242 %s", buf); } /* 243 */ @@ -1322,7 +1322,7 @@ plexus_cmd_243 (char *buf) return; } - send_cmd (NULL, "243 %s ", buf); + send_cmd (NULL, "243 %s", buf); } /* 211 */ @@ -1334,7 +1334,7 @@ plexus_cmd_211 (char *buf) return; } - send_cmd (NULL, "211 %s ", buf); + send_cmd (NULL, "211 %s", buf); } void @@ -1814,3 +1814,4 @@ AnopeInit (int argc, char **argv) return MOD_CONT; } + |