diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-09-30 12:51:07 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-09-30 12:51:07 +0000 |
commit | d1af2694e52f8945992fea7de2c3d40279fb55b0 (patch) | |
tree | a44fbe04a8e9b85639b96a4d60c7844ec9f3f64f | |
parent | d3de08a008252aba78ce9e5ca8c83d34dbbc0418 (diff) | |
download | postgresql-d1af2694e52f8945992fea7de2c3d40279fb55b0.tar.gz postgresql-d1af2694e52f8945992fea7de2c3d40279fb55b0.zip |
Fix misspelled comment
-rw-r--r-- | src/bin/pg_ctl/pg_ctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index f90bf29bed4..7dc57aae6ef 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -4,7 +4,7 @@ * * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.103 2008/06/26 18:25:24 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.104 2008/09/30 12:51:07 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -573,7 +573,7 @@ read_post_opts(void) { if (post_opts == NULL) { - post_opts = ""; /* defatult */ + post_opts = ""; /* default */ if (ctl_command == RESTART_COMMAND) { char **optlines; |