From bbbd3dc24ccc27dd739efb22fb293e8cf72929db Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Wed, 29 Aug 2012 08:38:29 -0600 Subject: [PATCH] Fix 'error: continue statement not within a loop' --- src/http.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.2