$OpenBSD: patch-base_src_common_ServerReply_c,v 1.1 2003/05/23 13:22:14 todd Exp $
--- base/src/common/ServerReply.c.orig	Sat Mar 29 16:15:20 2003
+++ base/src/common/ServerReply.c	Thu May 22 17:46:42 2003
@@ -85,7 +85,7 @@ reply_serialize(SDR_stream *strm, const 
 void *
 reply_deserialize(const DeserializeInfo *di, SDR_stream *strm)
 {
-  Reply *r = (Reply *) GC_MALLOC(sizeof(Reply));
+  Reply *r = (Reply *) malloc(sizeof(Reply));
 
   ser_init(r, &Reply_SerType, di->ver);
   r->reqID          = sdr_r_u32("reqid", strm);
@@ -106,7 +106,7 @@ reply_mark(Repository *r, const void *co
 Reply *
 reply_create(uint32_t reqid, Serializable *s)
 {
-  Reply *r = (Reply *) GC_MALLOC(sizeof(Reply));
+  Reply *r = (Reply *) malloc(sizeof(Reply));
 
   ser_init(r, &Reply_SerType, Reply_SerType.ver);
 
