[xiph-commits] r14017 - icecast/trunk/icecast/src

karl at svn.xiph.org karl at svn.xiph.org
Fri Oct 19 18:55:18 PDT 2007


Author: karl
Date: 2007-10-19 18:55:18 -0700 (Fri, 19 Oct 2007)
New Revision: 14017

Modified:
   icecast/trunk/icecast/src/auth.c
Log:
a missing break from a previous auth update was preventing url auth from being 
used


Modified: icecast/trunk/icecast/src/auth.c
===================================================================
--- icecast/trunk/icecast/src/auth.c	2007-10-20 00:58:05 UTC (rev 14016)
+++ icecast/trunk/icecast/src/auth.c	2007-10-20 01:55:18 UTC (rev 14017)
@@ -543,6 +543,7 @@
 #ifdef HAVE_AUTH_URL
             if (auth_get_url_auth (auth, options) < 0)
                 return -1;
+            break;
 #else
             ERROR0 ("Auth URL disabled");
             return -1;



More information about the commits mailing list