1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-29 04:25:55 -04:00

Fix copy/paste error in sending 400 errors (reported by wayne zhao).

svn path=/icecast/trunk/icecast/; revision=6553
This commit is contained in:
Michael Smith 2004-04-20 07:05:07 +00:00
parent c2b3ed7146
commit 935a06ef55

View File

@ -74,11 +74,11 @@ void client_destroy(client_t *client)
void client_send_400(client_t *client, char *message) {
int bytes;
bytes = sock_write(client->con->sock, "HTTP/1.0 404 File Not Found\r\n"
bytes = sock_write(client->con->sock, "HTTP/1.0 400 Bad Request\r\n"
"Content-Type: text/html\r\n\r\n"
"<b>%s</b>\r\n", message);
if(bytes > 0) client->con->sent_bytes = bytes;
client->respcode = 404;
client->respcode = 400;
client_destroy(client);
}