From a1fee1e7528e19088214d58041b3614ade400e26 Mon Sep 17 00:00:00 2001 From: Per Cederqvist <ceder@lysator.liu.se> Date: Fri, 28 Dec 2001 19:04:36 +0000 Subject: [PATCH] (prot_a_async_new_recipient): Use ``enum info_type'' instead of ``Info_type''. (prot_a_async_sub_recipient): Ditto. (Bug 335). --- src/server/prot-a-send-async.c | 18 +++++++++--------- src/server/prot-a-send-async.h | 20 ++++++++++---------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/server/prot-a-send-async.c b/src/server/prot-a-send-async.c index eb46ca100..cafcaeab9 100644 --- a/src/server/prot-a-send-async.c +++ b/src/server/prot-a-send-async.c @@ -1,5 +1,5 @@ /* - * $Id: prot-a-send-async.c,v 0.26 2001/12/22 17:00:10 ceder Exp $ + * $Id: prot-a-send-async.c,v 0.27 2001/12/28 19:04:36 ceder Exp $ * Copyright (C) 1991, 1993-1999 Lysator Academic Computer Association. * * This file is part of the LysKOM server. @@ -198,10 +198,10 @@ prot_a_async_deleted_text(Connection *cptr, } void -prot_a_async_new_recipient(Connection *cptr, - Text_no text_no, - Conf_no conf_no, - Info_type type) +prot_a_async_new_recipient(Connection *cptr, + Text_no text_no, + Conf_no conf_no, + enum info_type type) { ASYNC_CHECK_ACCEPT(cptr, ay_new_recipient); async_header(cptr, 3, ay_new_recipient); @@ -212,10 +212,10 @@ prot_a_async_new_recipient(Connection *cptr, } void -prot_a_async_sub_recipient(Connection *cptr, - Text_no text_no, - Conf_no conf_no, - Info_type type) +prot_a_async_sub_recipient(Connection *cptr, + Text_no text_no, + Conf_no conf_no, + enum info_type type) { ASYNC_CHECK_ACCEPT(cptr, ay_sub_recipient); async_header(cptr, 3, ay_sub_recipient); diff --git a/src/server/prot-a-send-async.h b/src/server/prot-a-send-async.h index 8ee18bd7b..ecae52007 100644 --- a/src/server/prot-a-send-async.h +++ b/src/server/prot-a-send-async.h @@ -1,5 +1,5 @@ /* - * $Id: prot-a-send-async.h,v 0.14 1999/05/30 09:26:24 ceder Exp $ + * $Id: prot-a-send-async.h,v 0.15 2001/12/28 19:04:35 ceder Exp $ * Copyright (C) 1991, 1994-1999 Lysator Academic Computer Association. * * This file is part of the LysKOM server. @@ -23,7 +23,7 @@ * Please mail bug reports to bug-lyskom@lysator.liu.se. */ /* - * $Id: prot-a-send-async.h,v 0.14 1999/05/30 09:26:24 ceder Exp $ + * $Id: prot-a-send-async.h,v 0.15 2001/12/28 19:04:35 ceder Exp $ * * Asynchronous messages in protocol A. */ @@ -90,16 +90,16 @@ prot_a_async_deleted_text(Connection *cptr, Text_stat *text_s); void -prot_a_async_new_recipient(Connection *cptr, - Text_no text_no, - Conf_no conf_no, - Info_type type); +prot_a_async_new_recipient(Connection *cptr, + Text_no text_no, + Conf_no conf_no, + enum info_type type); void -prot_a_async_sub_recipient(Connection *cptr, - Text_no text_no, - Conf_no conf_no, - Info_type type); +prot_a_async_sub_recipient(Connection *cptr, + Text_no text_no, + Conf_no conf_no, + enum info_type type); -- GitLab