Changed error message

SVN revision: 2418
This commit is contained in:
Stefan Ritt 2011-07-08 22:39:56 +00:00
parent 983baa50b4
commit 041531145e

View File

@ -28444,7 +28444,7 @@ void server_loop(void)
setsockopt(lsock, SOL_SOCKET, SO_REUSEADDR, (char *) &flag, sizeof(int));
status = bind(lsock, (struct sockaddr *) &serv_addr, sizeof(serv_addr));
if (status < 0) {
eprintf("Cannot bind to port %d.\nPlease use the \"-p\" flag to specify a different port.\n",
eprintf("Cannot bind to port %d.\nProbably another instance of this program is already running.\n",
elog_tcp_port);
exit(EXIT_FAILURE);
}