diff options
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r-- | src/protocol/unreal32.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index cee9c8ed1..07136bc86 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -862,7 +862,7 @@ void unreal_cmd_250(char *buf) return; } - send_cmd(NULL, "250 %s ", buf); + send_cmd(NULL, "250 %s", buf); } /* 307 */ @@ -872,7 +872,7 @@ void unreal_cmd_307(char *buf) return; } - send_cmd(ServerName, "307 %s ", buf); + send_cmd(ServerName, "307 %s", buf); } /* 311 */ @@ -882,7 +882,7 @@ void unreal_cmd_311(char *buf) return; } - send_cmd(ServerName, "311 %s ", buf); + send_cmd(ServerName, "311 %s", buf); } /* 312 */ @@ -892,7 +892,7 @@ void unreal_cmd_312(char *buf) return; } - send_cmd(ServerName, "312 %s ", buf); + send_cmd(ServerName, "312 %s", buf); } /* 317 */ @@ -902,7 +902,7 @@ void unreal_cmd_317(char *buf) return; } - send_cmd(ServerName, "317 %s ", buf); + send_cmd(ServerName, "317 %s", buf); } /* 219 */ @@ -946,7 +946,7 @@ void unreal_cmd_242(char *buf) return; } - send_cmd(NULL, "242 %s ", buf); + send_cmd(NULL, "242 %s", buf); } /* 243 */ @@ -956,7 +956,7 @@ void unreal_cmd_243(char *buf) return; } - send_cmd(NULL, "243 %s ", buf); + send_cmd(NULL, "243 %s", buf); } /* 211 */ @@ -966,7 +966,7 @@ void unreal_cmd_211(char *buf) return; } - send_cmd(NULL, "211 %s ", buf); + send_cmd(NULL, "211 %s", buf); } /* GLOBOPS */ |