From 6e23c0f8fc837bb88ca6e550887f0550defd681c Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Mon, 12 Aug 2002 10:11:44 +0000 Subject: [PATCH] Fix a bug in one of the error (404) responses. svn path=/trunk/icecast/; revision=3806 --- src/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.c b/src/connection.c index b2b62725..8956a51a 100644 --- a/src/connection.c +++ b/src/connection.c @@ -511,7 +511,7 @@ static void *_handle_connection(void *arg) else { client->respcode = 404; bytes = sock_write(client->con->sock, - "HTTP/1.0 404 Not Found\r\nContent-Type: text/html\r\nThe file you requested could not be found\r\n"); + "HTTP/1.0 404 Not Found\r\nContent-Type: text/html\r\n\r\nThe file you requested could not be found\r\n"); } avl_tree_unlock(global.source_tree); if(bytes > 0) client->con->sent_bytes = bytes;