aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1997-02-11 15:37:18 +0000
committerBruce Momjian <bruce@momjian.us>1997-02-11 15:37:18 +0000
commit4331b163201d79921ba8a69ba080ac5ae1ddc16b (patch)
treeebdae9712f733820a86b176e7d8750b65d018b66
parentec4ca05c12127ebcbbf91c17d05a0f9a2d794199 (diff)
downloadpostgresql-4331b163201d79921ba8a69ba080ac5ae1ddc16b.tar.gz
postgresql-4331b163201d79921ba8a69ba080ac5ae1ddc16b.zip
Add comment for questionable 5 padding.
-rw-r--r--src/include/libpq/pqcomm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h
index 4f9a7b3340a..0a23d226ce0 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.6 1996/12/26 23:28:27 bryanh Exp $
+ * $Id: pqcomm.h,v 1.7 1997/02/11 15:37:18 momjian Exp $
*
* NOTES
* Some of this should move to libpq.h
@@ -70,7 +70,7 @@ typedef struct StartupInfo {
} StartupInfo;
/* amount of available data in a packet buffer */
-#define MESSAGE_SIZE sizeof(StartupInfo) + 5
+#define MESSAGE_SIZE sizeof(StartupInfo) + 5 /* why 5? BJM 2/11/97 */
/* I/O can be blocking or non-blocking */
#define BLOCKING (FALSE)