diff options
author | rob 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 |
---|---|---|
committer | rob 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 |
commit | 2b1df0a547f5731a3c447d48d8e222a8732c9877 (patch) | |
tree | a9815776e78639d6666a87ae4082a5c1cb466ad7 /src/protocol/ratbox.c | |
parent | 8e7514123572ab91beabf6c79adf5bf743739413 (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/ratbox.c')
-rw-r--r-- | src/protocol/ratbox.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c index 386633fd0..14081e870 100644 --- a/src/protocol/ratbox.c +++ b/src/protocol/ratbox.c @@ -1184,7 +1184,7 @@ void ratbox_cmd_250(char *buf) return; } - send_cmd(NULL, "250 %s ", buf); + send_cmd(NULL, "250 %s", buf); } /* 307 */ @@ -1194,7 +1194,7 @@ void ratbox_cmd_307(char *buf) return; } - send_cmd((UseTS6 ? TS6SID : ServerName), "307 %s ", buf); + send_cmd((UseTS6 ? TS6SID : ServerName), "307 %s", buf); } /* 311 */ @@ -1204,7 +1204,7 @@ void ratbox_cmd_311(char *buf) return; } - send_cmd((UseTS6 ? TS6SID : ServerName), "311 %s ", buf); + send_cmd((UseTS6 ? TS6SID : ServerName), "311 %s", buf); } /* 312 */ @@ -1214,7 +1214,7 @@ void ratbox_cmd_312(char *buf) return; } - send_cmd((UseTS6 ? TS6SID : ServerName), "312 %s ", buf); + send_cmd((UseTS6 ? TS6SID : ServerName), "312 %s", buf); } /* 317 */ @@ -1224,7 +1224,7 @@ void ratbox_cmd_317(char *buf) return; } - send_cmd((UseTS6 ? TS6SID : ServerName), "317 %s ", buf); + send_cmd((UseTS6 ? TS6SID : ServerName), "317 %s", buf); } /* 219 */ @@ -1270,7 +1270,7 @@ void ratbox_cmd_242(char *buf) return; } - send_cmd(NULL, "242 %s ", buf); + send_cmd(NULL, "242 %s", buf); } /* 243 */ @@ -1280,7 +1280,7 @@ void ratbox_cmd_243(char *buf) return; } - send_cmd(NULL, "243 %s ", buf); + send_cmd(NULL, "243 %s", buf); } /* 211 */ @@ -1290,7 +1290,7 @@ void ratbox_cmd_211(char *buf) return; } - send_cmd(NULL, "211 %s ", buf); + send_cmd(NULL, "211 %s", buf); } void ratbox_cmd_mode(char *source, char *dest, char *buf) |