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

make sure mount authentication has a type specified

svn path=/icecast/trunk/icecast/; revision=13877
This commit is contained in:
Karl Heyes 2007-09-22 01:21:17 +00:00
parent 7735a94ee6
commit b8ab793867

View File

@ -529,6 +529,11 @@ int auth_release_listener (client_t *client)
static int get_authenticator (auth_t *auth, config_options_t *options)
{
if (auth->type == NULL)
{
WARN0 ("no authentication type defined");
return -1;
}
do
{
DEBUG1 ("type is %s", auth->type);