From: Amos Jeffries Date: Wed, 29 Aug 2012 14:38:29 +0000 (-0600) Subject: Fix 'error: continue statement not within a loop' X-Git-Tag: SQUID_3_2_2~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbbd3dc24ccc27dd739efb22fb293e8cf72929db;p=thirdparty%2Fsquid.git Fix 'error: continue statement not within a loop' --- diff --git a/src/http.cc b/src/http.cc index a959dc1646..60d9f697e9 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1578,7 +1578,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