Skip to content
Snippets Groups Projects
Commit a1fee1e7 authored by Per Cederqvist's avatar Per Cederqvist
Browse files

(prot_a_async_new_recipient): Use ``enum info_type'' instead of ``Info_type''.

(prot_a_async_sub_recipient): Ditto.  (Bug 335).
parent 1cfb34df
No related branches found
No related tags found
No related merge requests found
/* /*
* $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. * Copyright (C) 1991, 1993-1999 Lysator Academic Computer Association.
* *
* This file is part of the LysKOM server. * This file is part of the LysKOM server.
...@@ -201,7 +201,7 @@ void ...@@ -201,7 +201,7 @@ void
prot_a_async_new_recipient(Connection *cptr, prot_a_async_new_recipient(Connection *cptr,
Text_no text_no, Text_no text_no,
Conf_no conf_no, Conf_no conf_no,
Info_type type) enum info_type type)
{ {
ASYNC_CHECK_ACCEPT(cptr, ay_new_recipient); ASYNC_CHECK_ACCEPT(cptr, ay_new_recipient);
async_header(cptr, 3, ay_new_recipient); async_header(cptr, 3, ay_new_recipient);
...@@ -215,7 +215,7 @@ void ...@@ -215,7 +215,7 @@ void
prot_a_async_sub_recipient(Connection *cptr, prot_a_async_sub_recipient(Connection *cptr,
Text_no text_no, Text_no text_no,
Conf_no conf_no, Conf_no conf_no,
Info_type type) enum info_type type)
{ {
ASYNC_CHECK_ACCEPT(cptr, ay_sub_recipient); ASYNC_CHECK_ACCEPT(cptr, ay_sub_recipient);
async_header(cptr, 3, ay_sub_recipient); async_header(cptr, 3, ay_sub_recipient);
......
/* /*
* $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. * Copyright (C) 1991, 1994-1999 Lysator Academic Computer Association.
* *
* This file is part of the LysKOM server. * This file is part of the LysKOM server.
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
* Please mail bug reports to bug-lyskom@lysator.liu.se. * 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. * Asynchronous messages in protocol A.
*/ */
...@@ -93,13 +93,13 @@ void ...@@ -93,13 +93,13 @@ void
prot_a_async_new_recipient(Connection *cptr, prot_a_async_new_recipient(Connection *cptr,
Text_no text_no, Text_no text_no,
Conf_no conf_no, Conf_no conf_no,
Info_type type); enum info_type type);
void void
prot_a_async_sub_recipient(Connection *cptr, prot_a_async_sub_recipient(Connection *cptr,
Text_no text_no, Text_no text_no,
Conf_no conf_no, Conf_no conf_no,
Info_type type); enum info_type type);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment