diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-12 22:26:13 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-12 22:26:13 +0000 |
commit | aa0bad9638ba163cba0e34bb019759452f1bef16 (patch) | |
tree | d77b2001f80b085081b9a13635b633dad7a6817b | |
parent | 1d0085e47a15c56b389b0914c0a7e1e3e6d24db3 (diff) | |
download | postgresql-aa0bad9638ba163cba0e34bb019759452f1bef16.tar.gz postgresql-aa0bad9638ba163cba0e34bb019759452f1bef16.zip |
Remove that 5 from MESSAGE SIZE that no one understands.
-rw-r--r-- | src/include/libpq/pqcomm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h index c81c5d666c6..65892b8a818 100644 --- a/src/include/libpq/pqcomm.h +++ b/src/include/libpq/pqcomm.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pqcomm.h,v 1.14 1997/09/08 21:52:38 momjian Exp $ + * $Id: pqcomm.h,v 1.15 1997/09/12 22:26:13 momjian Exp $ * * NOTES * Some of this should move to libpq.h @@ -77,7 +77,7 @@ typedef struct StartupInfo } StartupInfo; /* amount of available data in a packet buffer */ -#define MESSAGE_SIZE sizeof(StartupInfo) + 5 /* why 5? BJM 2/11/97 */ +#define MESSAGE_SIZE sizeof(StartupInfo) /* I/O can be blocking or non-blocking */ #define BLOCKING (FALSE) |