[852] in Zephyr_Bugs
patch for server/subscr.c in 2.04
daemon@ATHENA.MIT.EDU (Derrick J Brashear)
Thu Mar 20 11:08:22 1997
Date: Thu, 20 Mar 1997 11:08:09 -0500 (EST)
From: Derrick J Brashear <shadow+@andrew.cmu.edu>
To: bug-zephyr@MIT.EDU
*** subscr.c 1996/02/20 20:39:11 1.6
--- subscr.c 1996/08/28 19:56:26 1.7
***************
*** 615,621 ****
client = client_which_client(&who->sin_addr, &reply);
! if (client) {
subs = client->subs;
} else if (strcmp(notice->z_opcode, CLIENT_GIMMEDEFS) == 0) {
#if 0
--- 615,621 ----
client = client_which_client(&who->sin_addr, &reply);
! if (client)
subs = client->subs;
} else if (strcmp(notice->z_opcode, CLIENT_GIMMEDEFS) == 0) {
#if 0
***************
*** 673,679 ****
i++;
}
}
- }
}
if (defsubs)
free_subscriptions(subs);
--- 673,678 ----
As I recall this was the patch to fix default subs
-D