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

prevent logging lots of failed to reserve relay mountpoint. close #1513

svn path=/icecast/trunk/icecast/; revision=15764
This commit is contained in:
Karl Heyes 2009-03-14 02:46:40 +00:00
parent 258cb85cc6
commit 1ab9b4a887

View File

@ -403,7 +403,14 @@ static void check_relay_stream (relay_server *relay)
}
}
else
WARN1 ("new relay but source \"%s\" already exists", relay->localmount);
{
if (relay->start == 0)
{
WARN1 ("new relay but source \"%s\" already exists", relay->localmount);
relay->start = 1;
}
return;
}
}
do
{