We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab179d6 commit 0f1802fCopy full SHA for 0f1802f
src/backend/postmaster/postmaster.c
@@ -10,7 +10,7 @@
10
*
11
12
* IDENTIFICATION
13
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.66 1997/12/11 17:03:52 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.67 1997/12/15 22:03:59 momjian Exp $
14
15
* NOTES
16
@@ -663,6 +663,7 @@ ServerLoop(void)
663
* the connection id out of the packet so we know who the
664
* packet is from.
665
*/
666
+receive_again:
667
status = PacketReceive(port, &port->buf, NON_BLOCKING);
668
switch (status)
669
{
@@ -686,7 +687,7 @@ ServerLoop(void)
686
687
break;
688
689
/* port->nBytes = 0; */
- continue;
690
+ goto receive_again;
691
} else {
692
int CSstatus; /* Completion status of
693
* ConnStartup */
0 commit comments