diff options
author | Andrey Nazarov <skuller@skuller.net> | 2008-10-03 12:49:06 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2008-10-03 12:49:06 +0000 |
commit | f8abe42a0d1a42653b39f6cf320d3fbdd1279bb3 (patch) | |
tree | 4e56e3647a4f9933f71c5f2cc03b4fa40bfc7709 /source/sv_http.c | |
parent | 3fb2508c6c5976d418c377847bba1037fa843fff (diff) |
Consolidated all MVD server code in a single file for easier portability.
Perform more strict configstring length checks server side.
No longer stop reading packets in a loop after an ICMP error.
Diffstat (limited to 'source/sv_http.c')
-rw-r--r-- | source/sv_http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sv_http.c b/source/sv_http.c index 56fa0a9..58fb210 100644 --- a/source/sv_http.c +++ b/source/sv_http.c @@ -107,7 +107,7 @@ static void SV_GetStatus( void ) { if( http_client->method == HTTP_METHOD_HEAD ) { SV_HttpPrintf( "\r\n" ); - SV_HttpDrop( http_client, "200 OK " ); + SV_HttpDrop( http_client, "200 OK" ); return; } |