]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fix invalid xml
authorAndré Malo <nd@apache.org>
Sun, 13 Jul 2008 20:07:27 +0000 (20:07 +0000)
committerAndré Malo <nd@apache.org>
Sun, 13 Jul 2008 20:07:27 +0000 (20:07 +0000)
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

index 55baf2fa06688895b43a20d7e40fa0b056c16e7f..835ca392949c83f79fc78d564ff9aa6193372324 100644 (file)
       byte b[] = java.security.MessageDigest.getInstance("MD5").digest( (user + ":" + realm + ":" + password ).getBytes());<br />
       java.math.BigInteger bi = new java.math.BigInteger(1, b);<br />
       String s = bi.toString(16);<br />
-      while (s.length() < 32)<br />
+      while (s.length() &lt; 32)<br />
       <indent>
         s = "0" + s;
       </indent>