Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2015-10-05 00:28:01 +0300
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2015-10-05 01:58:35 +0300
commit8a9089948f023600c1ba70893d5b45fc4b8ecd6c (patch)
tree4f73ab82c7ca9f487edd2a85cc13d50f970757a2 /ffserver.c
parent3388bcced450bfc8e6aff17f57184f29fd4a3383 (diff)
ffserver: wrap around too-busy message text
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Diffstat (limited to 'ffserver.c')
-rw-r--r--ffserver.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ffserver.c b/ffserver.c
index e3c3b420a2..34bfa89379 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));