From: André Malo Date: Sun, 13 Jul 2008 20:07:27 +0000 (+0000) Subject: fix invalid xml X-Git-Tag: 2.2.10~147 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5624b92f316d5c327a728f99161543150f061105;p=thirdparty%2Fapache%2Fhttpd.git fix invalid xml git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@676429 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/password_encryptions.xml b/docs/manual/misc/password_encryptions.xml index 55baf2fa066..835ca392949 100644 --- a/docs/manual/misc/password_encryptions.xml +++ b/docs/manual/misc/password_encryptions.xml @@ -184,7 +184,7 @@ byte b[] = java.security.MessageDigest.getInstance("MD5").digest( (user + ":" + realm + ":" + password ).getBytes());
java.math.BigInteger bi = new java.math.BigInteger(1, b);
String s = bi.toString(16);
- while (s.length() < 32)
+ while (s.length() < 32)
s = "0" + s;