You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
535 B

  1. commit c252546ceeb0925eb8a4061315e3ff0a8c55b48b
  2. Author: Wayne Davison <wayned@samba.org>
  3. Date: Tue Oct 24 20:42:41 2017 -0700
  4. Don't forget to tweak sum_update().
  5. diff --git a/checksum.c b/checksum.c
  6. index 9382694..c119f97 100644
  7. --- a/checksum.c
  8. +++ b/checksum.c
  9. @@ -295,6 +295,7 @@ void sum_update(const char *p, int32 len)
  10. case CSUM_MD4:
  11. case CSUM_MD4_OLD:
  12. case CSUM_MD4_BUSTED:
  13. + case CSUM_MD4_ARCHAIC:
  14. if (len + sumresidue < CSUM_CHUNK) {
  15. memcpy(md.buffer + sumresidue, p, len);
  16. sumresidue += len;