X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/59919ae4b1721ca271c3d3e5955c09d322573821..e9026a0a6d8fc5cbcfa8d658176bfd2776cb550e:/ghash-def.h diff --git a/ghash-def.h b/ghash-def.h index 9065f5b..da4063d 100644 --- a/ghash-def.h +++ b/ghash-def.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: ghash-def.h,v 1.5 2001/01/25 21:39:58 mdw Exp $ + * $Id: ghash-def.h,v 1.6 2004/04/04 19:42:59 mdw Exp $ * * Definitions for generic hash interface * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: ghash-def.h,v $ + * Revision 1.6 2004/04/04 19:42:59 mdw + * Add set -e. + * * Revision 1.5 2001/01/25 21:39:58 mdw * Burn the hash context when it's done with, for paranoia's sake. * @@ -134,7 +137,7 @@ static ghash *ghcopy(ghash *h) \ \ static const ghash_ops gops = \ { &pre, ghhash, ghdone, ghdestroy, ghcopy }; \ -const gchash pre = { #pre, PRE##_HASHSZ, ghinit }; +const gchash pre = { #pre, PRE##_HASHSZ, ghinit, PRE##_BUFSZ }; /*----- That's all, folks -------------------------------------------------*/