From: Martin Mares Date: Fri, 16 Feb 2001 20:16:26 +0000 (+0000) Subject: Declare fingerprints as 12 bytes, not 3 u32's. X-Git-Tag: holmes-import~1549 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=80174af3987efbe7cbb06094dd6054c53b6029d6;p=libucw.git Declare fingerprints as 12 bytes, not 3 u32's. --- diff --git a/lib/index.h b/lib/index.h index 25d35e62..e4182c7c 100644 --- a/lib/index.h +++ b/lib/index.h @@ -43,7 +43,7 @@ enum card_flag { /* String fingerprints */ struct fingerprint { - u32 hash[3]; + byte hash[12]; }; void fingerprint(byte *string, struct fingerprint *fp);