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
103c72ba
Commit
103c72ba
authored
Oct 22, 1994
by
Per Cederqvist
Browse files
(parse_forgotten, toploop): Get rid of apcc warning by not using "!"
to negate a Bool.
parent
e9d9405a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server/connections.c
View file @
103c72ba
/*
* $Id: connections.c,v 0.3
6
1994/
06/18 21:07:00
ceder Exp $
* $Id: connections.c,v 0.3
7
1994/
10/22 12:09:42
ceder Exp $
* Copyright (C) 1991, 1992, 1993, 1994 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -30,7 +30,7 @@
* Created by Willf|r 31/3-90. Mostly written by ceder.
*/
static
char
*
rcsid
=
"$Id: connections.c,v 0.3
6
1994/
06/18 21:07:00
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: connections.c,v 0.3
7
1994/
10/22 12:09:42
ceder Exp $"
;
#include
"rcs.h"
USE
(
rcsid
);
...
...
@@ -589,7 +589,7 @@ parse_forgotten(void)
}
}
return
!
flg
;
return
flg
?
FALSE
:
TRUE
;
}
...
...
@@ -953,7 +953,7 @@ toploop(void)
{
if
(
timeout
==
0
)
end_of_atomic
(
FALSE
);
pending_input
=
!
parse_forgotten
();
pending_input
=
(
parse_forgotten
()
?
FALSE
:
TRUE
)
;
}
...
...
Write
Preview
Supports
Markdown
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