From c392ad6f92fc7e85885b72aad9ce7ea71e63fa6c Mon Sep 17 00:00:00 2001 From: Kenneth G Raeburn Date: Thu, 24 May 1990 18:42:31 +0000 Subject: Reverted "punt" semantics to previous form, for Athena release 7.0. --- zwgc/main.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'zwgc/main.c') diff --git a/zwgc/main.c b/zwgc/main.c index 92edea8..f092ec2 100644 --- a/zwgc/main.c +++ b/zwgc/main.c @@ -291,23 +291,23 @@ void notice_handler(notice) notice->z_message_len, 1); string instance = get_field(notice->z_message, notice->z_message_len, 2); - string sender = get_field(notice->z_message, - notice->z_message_len, 3); - punt(class, instance, sender); + string recipient = get_field(notice->z_message, + notice->z_message_len, 3); + punt(class, instance, recipient); free(class); free(instance); - free(sender); + free(recipient); } else if (!strcasecmp(control_opcode, USER_UNSUPPRESS)) { string class = get_field(notice->z_message, notice->z_message_len, 1); string instance = get_field(notice->z_message, notice->z_message_len, 2); - string sender = get_field(notice->z_message, - notice->z_message_len, 3); - unpunt(class, instance, sender); + string recipient = get_field(notice->z_message, + notice->z_message_len, 3); + unpunt(class, instance, recipient); free(class); free(instance); - free(sender); + free(recipient); } else printf("zwgc: unknown control opcode %s.\n", control_opcode); @@ -324,7 +324,7 @@ void notice_handler(notice) if (puntable_address_p(notice->z_class, notice->z_class_inst, - notice->z_sender)) { + notice->z_recipient)) { #ifdef DEBUG if (zwgc_debug) printf("PUNTED <%s>!!!!\n", notice->z_class_inst); -- cgit v1.2.3