$OpenBSD: patch-base_src_repos_NetRepository_c,v 1.1 2003/05/23 13:22:14 todd Exp $
--- base/src/repos/NetRepository.c.orig	Tue Apr 15 22:04:17 2003
+++ base/src/repos/NetRepository.c	Thu May 22 17:46:43 2003
@@ -74,7 +74,7 @@ netrepository_connect(Repository *r, Pub
   WireUnsigned *svr_protoVersion;
   ObVec *ret;
   Request *sr = make_request(StartSession);  
-  NetConnInfo *nci = GC_MALLOC(sizeof(NetConnInfo));
+  NetConnInfo *nci = malloc(sizeof(NetConnInfo));
 
   /* First arg is what client thinks the repos path is */
   pathArg = wires_create(r->uri->path);
@@ -706,7 +706,7 @@ invoke_server (Repository *r, Request *r
     if (total == 0)
       THROW(ExIoError, "Client forced to read zero-length reply.");
 
-    rawReply = (void *)GC_MALLOC_ATOMIC(total);
+    rawReply = (void *)malloc(total);
     memset(rawReply, 0, total);
 
     TRY {
