From: Amos Jeffries Date: Wed, 29 Aug 2012 14:35:29 +0000 (-0600) Subject: Fix 'error: continue statement not within a loop' X-Git-Tag: sourceformat-review-1~14^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=39d4f537e79143ee5c75199ea1b2673df2cf362e;p=thirdparty%2Fsquid.git Fix 'error: continue statement not within a loop' --- diff --git a/src/http.cc b/src/http.cc index 34b44a1b25..f428918a23 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1586,7 +1586,7 @@ httpFixupAuthentication(HttpRequest * request, const HttpHeader * hdr_in, HttpHe } // if no external user credentials are available to fake authentication with PASS acts like PASSTHRU if (strcmp(request->peer_login, "PASS") == 0) - continue; + return; /* Kerberos login to peer */ #if HAVE_AUTH_MODULE_NEGOTIATE && HAVE_KRB5 && HAVE_GSSAPI