summaryrefslogtreecommitdiff
path: root/src/protocol/plexus.c
diff options
context:
space:
mode:
authorrob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2005-05-22 13:20:44 +0000
committerrob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2005-05-22 13:20:44 +0000
commit2b1df0a547f5731a3c447d48d8e222a8732c9877 (patch)
treea9815776e78639d6666a87ae4082a5c1cb466ad7 /src/protocol/plexus.c
parent8e7514123572ab91beabf6c79adf5bf743739413 (diff)
Commited without am, to remove indent crap
git-svn-id: svn://svn.anope.org/anope/trunk@806 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@560 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/plexus.c')
-rw-r--r--src/protocol/plexus.c21
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;
}
+