summaryrefslogtreecommitdiff
path: root/src/backend/main
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-11-22 18:17:34 +0000
committerBruce Momjian <bruce@momjian.us>2005-11-22 18:17:34 +0000
commit436a2956d80db29ac1dff640b631620d856b4f70 (patch)
treedb2252048385dd23a7d7a196e8685cb0a5816f7a /src/backend/main
parente196eedd8a95380fb392c00b9e7ea88a0e46053e (diff)
downloadpostgresql-436a2956d80db29ac1dff640b631620d856b4f70.tar.gz
Re-run pgindent, fixing a problem where comment lines after a blank
comment line where output as too long, and update typedefs for /lib directory. Also fix case where identifiers were used as variable names in the backend, but as typedefs in ecpg (favor the backend for indenting). Backpatch to 8.1.X.
Diffstat (limited to 'src/backend/main')
-rw-r--r--src/backend/main/main.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/backend/main/main.c b/src/backend/main/main.c
index ea1a3bef25..dab99bab9d 100644
--- a/src/backend/main/main.c
+++ b/src/backend/main/main.c
@@ -13,7 +13,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/main/main.c,v 1.96 2005/10/15 02:49:18 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/main/main.c,v 1.97 2005/11/22 18:17:11 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -62,9 +62,9 @@ main(int argc, char *argv[])
* code will NOT be executed when a backend or sub-bootstrap run is forked
* by the postmaster.
*
- * XXX The need for code here is proof that the platform in question is too
- * brain-dead to provide a standard C execution environment without help.
- * Avoid adding more here, if you can.
+ * XXX The need for code here is proof that the platform in question is
+ * too brain-dead to provide a standard C execution environment without
+ * help. Avoid adding more here, if you can.
*/
#if defined(__alpha) /* no __alpha__ ? */
@@ -134,8 +134,8 @@ main(int argc, char *argv[])
* be overwritten in order to set the process title for ps. In such cases
* save_ps_display_args makes and returns a new copy of the argv[] array.
*
- * save_ps_display_args may also move the environment strings to make extra
- * room. Therefore this should be done as early as possible during
+ * save_ps_display_args may also move the environment strings to make
+ * extra room. Therefore this should be done as early as possible during
* startup, to avoid entanglements with code that might save a getenv()
* result pointer.
*/
@@ -271,8 +271,8 @@ main(int argc, char *argv[])
/*
* Start our win32 signal implementation
*
- * SubPostmasterMain() will do this for itself, but the remaining modes need
- * it here
+ * SubPostmasterMain() will do this for itself, but the remaining modes
+ * need it here
*/
pgwin32_signal_initialize();
#endif