Blame SOURCES/mod_auth_kerb-5.4-handle-continue.patch

b2b3b1
diff --git a/src/mod_auth_kerb.c b/src/mod_auth_kerb.c
b2b3b1
index 2aab5ee..ca81878 100644
b2b3b1
--- a/src/mod_auth_kerb.c
b2b3b1
+++ b/src/mod_auth_kerb.c
b2b3b1
@@ -1744,7 +1744,6 @@ authenticate_user_gss(request_rec *r, kerb_auth_config *conf,
b2b3b1
      goto end;
b2b3b1
   }
b2b3b1
 
b2b3b1
-#if 0
b2b3b1
   /* This is a _Kerberos_ module so multiple authentication rounds aren't
b2b3b1
    * supported. If we wanted a generic GSS authentication we would have to do
b2b3b1
    * some magic with exporting context etc. */
b2b3b1
@@ -1752,7 +1751,6 @@ authenticate_user_gss(request_rec *r, kerb_auth_config *conf,
b2b3b1
      ret = HTTP_UNAUTHORIZED;
b2b3b1
      goto end;
b2b3b1
   }
b2b3b1
-#endif
b2b3b1
 
b2b3b1
   major_status = gss_display_name(&minor_status, client_name, &output_token, NULL);
b2b3b1
   gss_release_name(&minor_status, &client_name);