From 39d4f537e79143ee5c75199ea1b2673df2cf362e Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Wed, 29 Aug 2012 08:35: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 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 -- 2.47.2