From 549127b9f57e1b6e21c915abd9a2a72b8a98cd47 Mon Sep 17 00:00:00 2001 From: Karl Heyes Date: Sat, 20 Oct 2007 01:55:18 +0000 Subject: [PATCH] a missing break from a previous auth update was preventing url auth from being used svn path=/icecast/trunk/icecast/; revision=14017 --- src/auth.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auth.c b/src/auth.c index fb835be5..6169563c 100644 --- a/src/auth.c +++ b/src/auth.c @@ -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;