Add set -e.
[u/mdw/catacomb] / ghash-def.h
index 9065f5b..da4063d 100644 (file)
@@ -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 -------------------------------------------------*/