masqmail

changeset 221:8742d2cee364

added a note to the long vs. int question in md5.h Solar Designer explained to me in privat conversation that the int had performed much better on some systems and that 16bit ints are very rare. Still I like using the long.
author meillo@marmaro.de
date Fri, 23 Jul 2010 10:53:04 +0200
parents 44043b92114f
children 8cddc65765bd
files src/md5/md5.h
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- a/src/md5/md5.h	Wed Jul 21 22:14:09 2010 +0200
     1.2 +++ b/src/md5/md5.h	Fri Jul 23 10:53:04 2010 +0200
     1.3 @@ -14,6 +14,7 @@
     1.4  #define _MD5_H
     1.5  
     1.6  /* Any 32-bit or wider unsigned integer data type will do */
     1.7 +/* Note: Using an int will work on most systems and might perform much better */
     1.8  typedef unsigned long MD5_u32plus;
     1.9  
    1.10  typedef struct {