[6819] in Athena Bugs
Patch to server/coreutil.c for Discuss.
daemon@ATHENA.MIT.EDU (daemon@ATHENA.MIT.EDU)
Mon Jan 7 14:55:54 1991
From: srz@ATHENA.MIT.EDU (Stanley R Zanarotti)
Date: Mon, 7 Jan 91 14:55:39 -0500
To: bugs@ATHENA.MIT.EDU
Cc: bug-discuss@ATHENA.MIT.EDU
*** /tmp/,RCSt1013017 Mon Jan 7 14:54:36 1991
--- /tmp/,RCSt2013017 Mon Jan 7 14:54:39 1991
***************
*** 7,13 ****
*/
/*
* $Source: /mit/discuss/source/server/RCS/coreutil.c,v $
! * $Header: /mit/discuss/source/server/RCS/coreutil.c,v 1.19 89/09/01 11:51:18 srz Exp $
*
*
* coreutil.c -- These contain lower-layer, utility type routines to
--- 7,13 ----
*/
/*
* $Source: /mit/discuss/source/server/RCS/coreutil.c,v $
! * $Header: /mit/discuss/source/server/RCS/coreutil.c,v 1.20 89/09/01 11:54:13 srz Exp $
*
*
* coreutil.c -- These contain lower-layer, utility type routines to
***************
*** 15,20 ****
--- 15,23 ----
* in-memory superblock, and to open & close meetings.
*
* $Log: coreutil.c,v $
+ * Revision 1.20 89/09/01 11:54:13 srz
+ * Defined use_zephyr variable, even when ZEPHYR is not defined.
+ *
* Revision 1.19 89/09/01 11:51:18 srz
* Fixed memory leak, and cut connection between super_chairman and access.
*
***************
*** 83,89 ****
const
#endif
static char rcsid_coreutil_c[] =
! "$Header: /mit/discuss/source/server/RCS/coreutil.c,v 1.19 89/09/01 11:51:18 srz Exp $";
#endif /* lint */
#include <discuss/types.h>
--- 86,92 ----
const
#endif
static char rcsid_coreutil_c[] =
! "$Header: /mit/discuss/source/server/RCS/coreutil.c,v 1.20 89/09/01 11:54:13 srz Exp $";
#endif /* lint */
#include <discuss/types.h>
***************
*** 122,127 ****
--- 125,132 ----
int no_nuke = 0; /* Don't be atomic (linked) */
#ifdef ZEPHYR
int use_zephyr = 1; /* Actually do use Zephyr. */
+ #else
+ int use_zephyr = 0;
#endif