Commit 1afe0b31 authored by Tom Lane's avatar Tom Lane

Repair incorrectly-figured snprintf length restriction.

parent 84e832a8
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: pqcomm.c,v 1.68 1999/04/25 03:19:21 tgl Exp $ * $Id: pqcomm.c,v 1.69 1999/05/04 23:39:20 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -261,8 +261,10 @@ StreamServerPort(char *hostName, short portName, int *fdP) ...@@ -261,8 +261,10 @@ StreamServerPort(char *hostName, short portName, int *fdP)
"\tIs another postmaster already running on that port?\n"); "\tIs another postmaster already running on that port?\n");
if (family == AF_UNIX) if (family == AF_UNIX)
{ {
snprintf(PQerrormsg + strlen(PQerrormsg), ERROR_MSG_LENGTH, snprintf(PQerrormsg + strlen(PQerrormsg),
"\tIf not, remove socket node (%s) and retry.\n", sock_path); ERROR_MSG_LENGTH - strlen(PQerrormsg),
"\tIf not, remove socket node (%s) and retry.\n",
sock_path);
} }
else else
{ {
......
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