Commit 3dc0c8e4 authored by Marc G. Fournier's avatar Marc G. Fournier

Fixed a missed change from Carsten Heyl <heyl@nads.de>

parent de466eb8
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.10 1996/10/04 20:32:07 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.11 1996/10/07 07:18:34 scrappy Exp $
* *
* NOTES * NOTES
* *
...@@ -541,7 +541,7 @@ ServerLoop(void) ...@@ -541,7 +541,7 @@ ServerLoop(void)
} }
FD_CLR(port->sock, &basemask); FD_CLR(port->sock, &basemask);
StreamClose(port->sock); StreamClose(port->sock);
next = DLGetPred(curr); next = DLGetSucc(curr);
DLRemove(curr); DLRemove(curr);
DLFreeElem(curr); DLFreeElem(curr);
curr = next; curr = next;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment