Skip to content
GitLab
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
f2989f44
Commit
f2989f44
authored
Jul 14, 2003
by
Per Cederqvist
Browse files
(queue_remove): Fixed a typo that caused a broken pointer structure on
the queue of pending clients.
parent
e78dac6d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server/connections.c
View file @
f2989f44
/*
* $Id: connections.c,v 0.10
0
2003/07/1
3 22:19:46
ceder Exp $
* $Id: connections.c,v 0.10
1
2003/07/1
4 10:56:29
ceder Exp $
* Copyright (C) 1991-2002 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -161,7 +161,7 @@ queue_remove(Connection *c)
if
(
c
->
queue_prev
!=
NULL
)
c
->
queue_prev
->
queue_next
=
c
->
queue_next
;
else
queue_first
=
c
->
queue_
prev
;
queue_first
=
c
->
queue_
next
;
c
->
queue_prev
=
NULL
;
c
->
queue_next
=
NULL
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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