aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tcop/postgres.c
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2006-02-17 03:29:02 +0000
committerNeil Conway <neilc@samurai.com>2006-02-17 03:29:02 +0000
commitea9eca2c2013339cbd053e0289926565372c922f (patch)
treeee2eb2761dd257b2a7edae218660ec47380c29bf /src/backend/tcop/postgres.c
parent15a3c33164692c06601b330b9c86a05a0c4e188e (diff)
downloadpostgresql-ea9eca2c2013339cbd053e0289926565372c922f.tar.gz
postgresql-ea9eca2c2013339cbd053e0289926565372c922f.zip
Fix typo in comment.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r--src/backend/tcop/postgres.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c
index ca08849afe9..2d8eef43b05 100644
--- a/src/backend/tcop/postgres.c
+++ b/src/backend/tcop/postgres.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.479 2006/01/18 06:49:27 neilc Exp $
+ * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.480 2006/02/17 03:29:02 neilc Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@@ -98,8 +98,10 @@ int PostAuthDelay = 0;
/* max_stack_depth converted to bytes for speed of checking */
static int max_stack_depth_bytes = 2048 * 1024;
-/* stack base pointer (initialized by PostgresMain) */
-/* Do not make static so PL/Java can modifiy it */
+/*
+ * Stack base pointer -- initialized by PostgresMain. This is not static
+ * so that PL/Java can modify it.
+ */
char *stack_base_ptr = NULL;