[httpd] Improve log message

This commit is contained in:
ejurgensen 2016-03-21 19:26:54 +01:00
parent 7d1d52e8f0
commit c4713d8b39
1 changed files with 1 additions and 1 deletions

View File

@ -1376,7 +1376,7 @@ httpd_init(void)
ret = evhttp_bind_socket(evhttpd, "::", port); ret = evhttp_bind_socket(evhttpd, "::", port);
if (ret < 0) if (ret < 0)
{ {
DPRINTF(E_LOG, L_HTTPD, "Could not bind to port %d, falling back to IPv4\n", port); DPRINTF(E_LOG, L_HTTPD, "Could not bind to port %d with IPv6, falling back to IPv4\n", port);
v6enabled = 0; v6enabled = 0;
} }
} }