summaryrefslogtreecommitdiff
path: root/src/protocol/solidircd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol/solidircd.c')
-rw-r--r--src/protocol/solidircd.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/protocol/solidircd.c b/src/protocol/solidircd.c
index 8455d1219..aa7fdabe5 100644
--- a/src/protocol/solidircd.c
+++ b/src/protocol/solidircd.c
@@ -1135,7 +1135,7 @@ void solidircd_cmd_250(char *buf)
return;
}
- send_cmd(NULL, "250 %s ", buf);
+ send_cmd(NULL, "250 %s", buf);
}
/* 307 */
@@ -1145,7 +1145,7 @@ void solidircd_cmd_307(char *buf)
return;
}
- send_cmd(ServerName, "307 %s ", buf);
+ send_cmd(ServerName, "307 %s", buf);
}
/* 311 */
@@ -1155,7 +1155,7 @@ void solidircd_cmd_311(char *buf)
return;
}
- send_cmd(ServerName, "311 %s ", buf);
+ send_cmd(ServerName, "311 %s", buf);
}
/* 312 */
@@ -1165,7 +1165,7 @@ void solidircd_cmd_312(char *buf)
return;
}
- send_cmd(ServerName, "312 %s ", buf);
+ send_cmd(ServerName, "312 %s", buf);
}
/* 317 */
@@ -1175,7 +1175,7 @@ void solidircd_cmd_317(char *buf)
return;
}
- send_cmd(ServerName, "317 %s ", buf);
+ send_cmd(ServerName, "317 %s", buf);
}
/* 219 */
@@ -1219,7 +1219,7 @@ void solidircd_cmd_242(char *buf)
return;
}
- send_cmd(NULL, "242 %s ", buf);
+ send_cmd(NULL, "242 %s", buf);
}
/* 243 */
@@ -1229,7 +1229,7 @@ void solidircd_cmd_243(char *buf)
return;
}
- send_cmd(NULL, "243 %s ", buf);
+ send_cmd(NULL, "243 %s", buf);
}
/* 211 */
@@ -1239,7 +1239,7 @@ void solidircd_cmd_211(char *buf)
return;
}
- send_cmd(NULL, "211 %s ", buf);
+ send_cmd(NULL, "211 %s", buf);
}
void solidircd_cmd_nick(char *nick, char *name, char *modes)