[FFmpeg-cvslog] ffserver: wrap around too-busy message text
Reynaldo H. Verdejo Pinochet
git at videolan.org
Mon Oct 5 01:00:27 CEST 2015
ffmpeg | branch: master | Reynaldo H. Verdejo Pinochet <reynaldo at osg.samsung.com> | Sun Oct 4 14:28:01 2015 -0700| [8a9089948f023600c1ba70893d5b45fc4b8ecd6c] | committer: Reynaldo H. Verdejo Pinochet
ffserver: wrap around too-busy message text
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo at osg.samsung.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8a9089948f023600c1ba70893d5b45fc4b8ecd6c
---
ffserver.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/ffserver.c b/ffserver.c
index e3c3b42..34bfa89 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -741,8 +741,10 @@ static void http_send_too_busy_reply(int fd)
"Content-type: text/html\r\n"
"\r\n"
"<html><head><title>Too busy</title></head><body>\r\n"
- "<p>The server is too busy to serve your request at this time.</p>\r\n"
- "<p>The number of current connections is %u, and this exceeds the limit of %u.</p>\r\n"
+ "<p>The server is too busy to serve your request at "
+ "this time.</p>\r\n"
+ "<p>The number of current connections is %u, and this "
+ "exceeds the limit of %u.</p>\r\n"
"</body></html>\r\n",
nb_connections, config.nb_max_connections);
av_assert0(len < sizeof(buffer));
More information about the ffmpeg-cvslog
mailing list