1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

missing test from a previous patch, the running check needs to apply as well

svn path=/icecast/trunk/icecast/; revision=8223
This commit is contained in:
Karl Heyes 2004-11-18 19:47:39 +00:00
parent b2b2850708
commit 524d467a25

View File

@ -339,15 +339,22 @@ void admin_handle_request(client_t *client, char *uri)
}
else
{
if (!source->shoutcast_compat) {
if (source->running == 0)
{
INFO2("Received admin command %s on unavailable mount \"%s\"",
command_string, mount);
avl_tree_unlock (global.source_tree);
client_send_400 (client, "Source is not available");
return;
}
if (source->running == 0)
{
avl_tree_unlock (global.source_tree);
INFO2("Received admin command %s on unavailable mount \"%s\"",
command_string, mount);
client_send_400 (client, "Source is not available");
return;
}
if (command == COMMAND_SHOUTCAST_METADATA_UPDATE &&
source->shoutcast_compat == 0)
{
avl_tree_unlock (global.source_tree);
ERROR0 ("illegal change of metadata on non-shoutcast "
"compatible stream");
client_send_400 (client, "illegal metadata call");
return;
}
INFO2("Received admin command %s on mount \"%s\"",
command_string, mount);