From ca488e03f51062dc8fa32048d14ae58e2a80903d Mon Sep 17 00:00:00 2001 From: orbiter Date: Mon, 10 Dec 2007 02:04:48 +0000 Subject: [PATCH] fixed authorization case git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4262 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/http/httpd.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/de/anomic/http/httpd.java b/source/de/anomic/http/httpd.java index 90f0231ba..6a8aa4968 100644 --- a/source/de/anomic/http/httpd.java +++ b/source/de/anomic/http/httpd.java @@ -294,13 +294,13 @@ public final class httpd implements serverHandler { } public static int staticAdminAuthenticated(String authorization, serverSwitch sw){ - if(authorization==null) return 1; + if (authorization==null) return 1; //if (authorization.length() < 6) return 1; // no authentication information given //authorization = authorization.trim().substring(6); String adminAccountBase64MD5 = sw.getConfig(ADMIN_ACCOUNT_B64MD5, ""); if (adminAccountBase64MD5.length() == 0) return 2; // no passwrd stored if (adminAccountBase64MD5.equals(serverCodings.encodeMD5Hex(authorization))) return 4; // hard-authenticated, all ok - return 0; + return 1; } private boolean handleServerAuthentication(httpHeader header) throws IOException {