summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-07 07:19:38 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-07 07:19:38 +0000
commitdf738547d7d82e692e73aba72bd362956e0638e3 (patch)
tree2d77c13bd0d59be2d87153d84bade2d0bd89fa51
parentbf3473c468b1938f782fdcc208bd62c4b061daa3 (diff)
downloadpostgresql-df738547d7d82e692e73aba72bd362956e0638e3.tar.gz
fixed it here too...
-rw-r--r--src/backend/postmaster/postmaster.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index e4beb41ab4..ef33d2fd13 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.3.2.3 1996/10/04 20:33:18 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.3.2.4 1996/10/07 07:19:38 scrappy Exp $
*
* NOTES
*
@@ -541,7 +541,7 @@ ServerLoop()
}
FD_CLR(port->sock, &basemask);
StreamClose(port->sock);
- next = DLGetPred(curr);
+ next = DLGetSucc(curr);
DLRemove(curr);
DLFreeElem(curr);
curr = next;