summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorBruce Momjian2004-06-01 03:32:42 +0000
committerBruce Momjian2004-06-01 03:32:42 +0000
commit962a94bb5a3604f4c4f2defa84872c02829f2fc5 (patch)
tree6009928da20b38425e8566af6639ef3221b5cfca /src/bin
parenta0d6e29ee703959449e6cc8b62a759e302d26039 (diff)
More locale fixes for pg_ctl.
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/pg_ctl/pg_ctl.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c
index d9d5899ef1d..ce0fc259014 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-2003, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.3 2004/06/01 01:28:03 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.4 2004/06/01 03:32:42 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -12,6 +12,7 @@
#include "postgres_fe.h"
#include "libpq-fe.h"
+#include <locale.h>
#include <signal.h>
#include <errno.h>
#include <sys/types.h>
@@ -402,7 +403,8 @@ do_start(void)
if (ret == -1)
fprintf(stderr,
_("The program \"postmaster\" is needed by %s "
- "but was not found in the same directory as \"%s\".\n"
+ "but was not found in the same directory as "
+ "\"%s\".\n"
"Check your installation.\n"),
progname, progname);
else