$OpenBSD: patch-base_src_common_sha1_c,v 1.1 2003/05/23 13:22:14 todd Exp $
--- base/src/common/sha1.c.orig	Sat Mar 29 16:15:28 2003
+++ base/src/common/sha1.c	Thu May 22 17:46:42 2003
@@ -75,12 +75,12 @@ struct OPENCM_SHA {
 OPENCM_SHA *
 sha_create()
 {
-  OPENCM_SHA *sha = (OPENCM_SHA *) GC_MALLOC(sizeof(OPENCM_SHA));
+  OPENCM_SHA *sha = (OPENCM_SHA *) malloc(sizeof(OPENCM_SHA));
   
   SHA1_Init(&sha->context);
 
 #ifdef BLKCHARS
-  sha->buf = GC_MALLOC_ATOMIC(BLKCHARS);
+  sha->buf = malloc(BLKCHARS);
   sha->buflen = 0;
 #endif
   sha->totlen = 0;
