From: David Shane Holden Date: Fri, 11 Jul 2008 21:02:23 +0000 (+0000) Subject: Use < instead of < in example code. X-Git-Tag: 2.3.0~429 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9daa2e0993820d8fd99ade32119b09fc5ef43ab1;p=thirdparty%2Fapache%2Fhttpd.git Use < instead of < in example code. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@676078 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;