derick          Thu Feb 20 05:33:56 2003 EDT

  Modified files:              
    /php4/ext/standard  md5.c 
  Log:
  - Fixed copy and paste bug
  
  
Index: php4/ext/standard/md5.c
diff -u php4/ext/standard/md5.c:1.32 php4/ext/standard/md5.c:1.33
--- php4/ext/standard/md5.c:1.32        Thu Feb 20 05:32:35 2003
+++ php4/ext/standard/md5.c     Thu Feb 20 05:33:55 2003
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: md5.c,v 1.32 2003/02/20 10:32:35 derick Exp $ */
+/* $Id: md5.c,v 1.33 2003/02/20 10:33:55 derick Exp $ */
 
 /* 
  * md5.c - Copyright 1997 Lachlan Roche 
@@ -116,7 +116,7 @@
        fclose(fp);
 
        if (raw_output) {
-               RETURN_STRINGL(digest, 20, 1);
+               RETURN_STRINGL(digest, 16, 1);
        } else {
                make_digest(md5str, digest);
                RETVAL_STRING(md5str, 1);



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to