[monitor_mm.h]
     garbage collect two unused fields in struct mm_master; ok markus@
This commit is contained in:
Damien Miller 2008-05-19 14:55:29 +10:00
parent ff0dd88999
commit 0b4c16589a
2 changed files with 5 additions and 5 deletions

View File

@ -36,6 +36,9 @@
- djm@cvs.openbsd.org 2008/04/18 22:01:33
[session.c]
remove unneccessary parentheses
- otto@cvs.openbsd.org 2008/04/29 11:20:31
[monitor_mm.h]
garbage collect two unused fields in struct mm_master; ok markus@
20080403
- (djm) [openbsd-compat/bsd-poll.c] Include stdlib.h to avoid compile-
@ -3896,4 +3899,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
$Id: ChangeLog,v 1.4913 2008/05/19 04:55:02 djm Exp $
$Id: ChangeLog,v 1.4914 2008/05/19 04:55:29 djm Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: monitor_mm.h,v 1.4 2006/08/03 03:34:42 deraadt Exp $ */
/* $OpenBSD: monitor_mm.h,v 1.5 2008/04/29 11:20:31 otto Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
@ -41,9 +41,6 @@ struct mm_master {
size_t size;
struct mm_master *mmalloc; /* Used to completely share */
int write; /* used to writing to other party */
int read; /* used for reading from other party */
};
RB_PROTOTYPE(mmtree, mm_share, next, mm_compare)