]> granicus.if.org Git - neomutt/commitdiff
fix prototypes in md5.h
authorRichard Russon <rich@flatcap.org>
Sat, 21 Sep 2019 15:23:40 +0000 (16:23 +0100)
committerRichard Russon <rich@flatcap.org>
Sat, 21 Sep 2019 16:55:08 +0000 (17:55 +0100)
mutt/md5.h

index 602059756aeee584cb4480099a41128ba0f7b6f1..9616b165673e5df80b9fdbe381124e27ddb09cc3 100644 (file)
@@ -45,12 +45,12 @@ struct Md5Ctx
   md5_uint32 buffer[32];
 };
 
-void *mutt_md5(const char *string, void *resbuf);
+void *mutt_md5(const char *str, void *buf);
 void *mutt_md5_bytes(const void *buffer, size_t len, void *resbuf);
 void *mutt_md5_finish_ctx(struct Md5Ctx *md5ctx, void *resbuf);
 void  mutt_md5_init_ctx(struct Md5Ctx *md5ctx);
-void  mutt_md5_process(const char *string, struct Md5Ctx *md5ctx);
-void  mutt_md5_process_bytes(const void *buffer, size_t len, struct Md5Ctx *md5ctx);
+void  mutt_md5_process(const char *str, struct Md5Ctx *md5ctx);
+void  mutt_md5_process_bytes(const void *buf, size_t buflen, struct Md5Ctx *md5ctx);
 void  mutt_md5_toascii(const void *digest, char *resbuf);
 
 #endif /* MUTT_LIB_MD5_H */