From 5624b92f316d5c327a728f99161543150f061105 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Malo?= Date: Sun, 13 Jul 2008 20:07:27 +0000 Subject: [PATCH] fix invalid xml git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@676429 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/misc/password_encryptions.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2