Commit 23769354 authored by Pierre Ynard's avatar Pierre Ynard

httpd: fix grammar in comments

(cherry picked from commit 4c87b90bf458901e542e7d318ef4c58925421e76)
Signed-off-by: default avatarPierre Ynard <linkfanel@yahoo.fr>
parent 40b2a201
...@@ -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