fixed authorization case

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4262 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 17 years ago
parent 6a3a292015
commit ca488e03f5

@ -300,7 +300,7 @@ public final class httpd implements serverHandler {
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 {

Loading…
Cancel
Save