Browse code

ffserver: wrap around too-busy message text

Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>

Reynaldo H. Verdejo Pinochet authored on 2015/10/05 06:28:01
Showing 1 changed files
... ...
@@ -741,8 +741,10 @@ static void http_send_too_busy_reply(int fd)
741 741
                        "Content-type: text/html\r\n"
742 742
                        "\r\n"
743 743
                        "<html><head><title>Too busy</title></head><body>\r\n"
744
-                       "<p>The server is too busy to serve your request at this time.</p>\r\n"
745
-                       "<p>The number of current connections is %u, and this exceeds the limit of %u.</p>\r\n"
744
+                       "<p>The server is too busy to serve your request at "
745
+                       "this time.</p>\r\n"
746
+                       "<p>The number of current connections is %u, and this "
747
+                       "exceeds the limit of %u.</p>\r\n"
746 748
                        "</body></html>\r\n",
747 749
                        nb_connections, config.nb_max_connections);
748 750
     av_assert0(len < sizeof(buffer));