Commit 4c87b90b authored by Pierre Ynard's avatar Pierre Ynard

httpd: fix grammar in comments

parent 3326e7ef
...@@ -1829,9 +1829,9 @@ static void httpd_ClientRecv( httpd_client_t *cl ) ...@@ -1829,9 +1829,9 @@ static void httpd_ClientRecv( httpd_client_t *cl )
} }
if( cl->query.i_body > 0 ) if( cl->query.i_body > 0 )
{ {
/* TODO Mhh, handle the case client will only send a /* TODO Mhh, handle the case where the client only
* request and close the connection * sends a request and closes the connection to
* to mark and of body (probably only RTSP) */ * mark the end of the body (probably only RTSP) */
cl->query.p_body = xmalloc( cl->query.i_body ); cl->query.p_body = xmalloc( cl->query.i_body );
cl->i_buffer = 0; cl->i_buffer = 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment