masqmail

diff src/md5/hmac_md5.c @ 366:41958685480d

Switched to `type *name' style Andrew Koenig's ``C Traps and Pitfalls'' (Ch.2.1) convinced me that it is best to go with the way C had been designed. The ``declaration reflects use'' concept conflicts with a ``type* name'' notation. Hence I switched.
author markus schnalke <meillo@marmaro.de>
date Thu, 22 Sep 2011 15:07:40 +0200
parents 0f36c0a46f82
children b27f66555ba8
line diff
     1.1 --- a/src/md5/hmac_md5.c	Wed Sep 14 12:20:40 2011 +0200
     1.2 +++ b/src/md5/hmac_md5.c	Thu Sep 22 15:07:40 2011 +0200
     1.3 @@ -40,7 +40,7 @@
     1.4  Ensure digest points to hashsize bytes of allocated memory.
     1.5  */
     1.6  void
     1.7 -hmac_md5(unsigned char* text, int textlen, unsigned char* key, int keylen, unsigned char* digest)
     1.8 +hmac_md5(unsigned char *text, int textlen, unsigned char *key, int keylen, unsigned char *digest)
     1.9  {
    1.10  	int i;
    1.11  	MD5_CTX context;