1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

Be more verbose in case of fileserve off.

svn path=/icecast/trunk/icecast/; revision=19265
This commit is contained in:
Thomas B. "dm8tbr" Ruecker 2014-11-06 12:02:00 +00:00
parent 0eff9a91e9
commit 859c761cb6

View File

@ -501,7 +501,7 @@ int fserve_client_create (client_t *httpclient, const char *path)
config = config_get_config(); config = config_get_config();
if (config->fileserve == 0) if (config->fileserve == 0)
{ {
ICECAST_LOG_DEBUG("on demand file \"%H\" refused", fullpath); ICECAST_LOG_DEBUG("on demand file \"%H\" refused. Serving static files has been disabled in the config", fullpath);
client_send_404 (httpclient, "The file you requested could not be found"); client_send_404 (httpclient, "The file you requested could not be found");
config_release_config(); config_release_config();
free (fullpath); free (fullpath);