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

a missing break from a previous auth update was preventing url auth from being

used

svn path=/icecast/trunk/icecast/; revision=14017
This commit is contained in:
Karl Heyes 2007-10-20 01:55:18 +00:00
parent ab75a3297f
commit 549127b9f5

View File

@ -543,6 +543,7 @@ static int get_authenticator (auth_t *auth, config_options_t *options)
#ifdef HAVE_AUTH_URL
if (auth_get_url_auth (auth, options) < 0)
return -1;
break;
#else
ERROR0 ("Auth URL disabled");
return -1;