31057a08c0
see http://www.opencm.org/news.html for hilights of this update, major noteworthy changes include: - sxd has gone away, gzfs is 'interim' while 'sxd2' is almost ready - if you have an old sxd repository, read the mailing list archives for how to update (use an interum version) - an incompatible update to the server/client protocol requires that you update both at the same time (as a reminder, this is 'alpha' and as such is subject to incompatible changes like the above. expect more to come when sxd2 emerges) Also, add a 'nogc' flavor that removes the dependency on boehm-gc, at the cost of not free()'ing all memory allocated (read: at the moment, most).
13 lines
507 B
Plaintext
13 lines
507 B
Plaintext
$OpenBSD: patch-base_src_repos_AuthRepos_c,v 1.1 2003/05/23 13:22:14 todd Exp $
|
|
--- base/src/repos/AuthRepos.c.orig Mon Mar 31 10:29:19 2003
|
|
+++ base/src/repos/AuthRepos.c Thu May 22 17:46:42 2003
|
|
@@ -495,7 +495,7 @@ authrepository_init(Repository *r)
|
|
Repository *
|
|
authrepository_wrap(Repository *r, PubKey *pk)
|
|
{
|
|
- Repository *authR = (Repository *) GC_MALLOC(sizeof(Repository));
|
|
+ Repository *authR = (Repository *) malloc(sizeof(Repository));
|
|
|
|
authR->uri = r->uri;
|
|
authR->authMutable = 0;
|