Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
d5627e11
Commit
d5627e11
authored
Jul 28, 1996
by
Per Cederqvist
Browse files
(init_connection): Connection::want_async is now an array of Bool
instead of an array of int. Adjust the code accordingly.
parent
51b74f91
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server/internal-connections.c
View file @
d5627e11
/*
* $Id: internal-connections.c,v 0.2
3
1996/07/2
6 00:35:28
ceder Exp $
* $Id: internal-connections.c,v 0.2
4
1996/07/2
8 12:43:11
ceder Exp $
* Copyright (C) 1991, 1992, 1993, 1994 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,7 @@
* Abstract routines on the data type Connection.
*/
static
char
*
rcsid
=
"$Id: internal-connections.c,v 0.2
3
1996/07/2
6 00:35:28
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: internal-connections.c,v 0.2
4
1996/07/2
8 12:43:11
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -122,12 +122,12 @@ init_connection(Connection *conn)
conn
->
num_list
.
data
=
NULL
;
for
(
i
=
0
;
i
<
ay_dummy_last
;
i
++
)
conn
->
want_async
[
i
]
=
0
;
conn
->
want_async
[
i
]
=
FALSE
;
for
(
i
=
0
;
i
<
sizeof
(
default_want_async
)
/
sizeof
(
*
default_want_async
);
i
++
)
conn
->
want_async
[
default_want_async
[
i
]]
=
1
;
conn
->
want_async
[
default_want_async
[
i
]]
=
TRUE
;
init_priv_bits
(
&
conn
->
priv_bits
);
init_conf_type
(
&
conn
->
conf_type
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment