summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/backend/postmaster/postmaster.c7
-rw-r--r--src/bin/pg_ctl/pg_ctl.c7
2 files changed, 4 insertions, 10 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index 4231ff22d42..208175c2c6b 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.409 2004/07/11 23:49:45 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.410 2004/07/12 18:17:13 momjian Exp $
*
* NOTES
*
@@ -526,10 +526,7 @@ PostmasterMain(int argc, char *argv[])
}
if (userPGDATA)
- {
- userPGDATA = strdup(userPGDATA);
- canonicalize_path(userPGDATA);
- }
+ canonicalize_path(userPGDATA = strdup(userPGDATA));
if (onlyConfigSpecified(userPGDATA))
{
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c
index 44941c5acbd..6cd562345c9 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.18 2004/06/25 08:49:28 dennis Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.19 2004/07/12 18:17:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1308,10 +1308,7 @@ main(int argc, char **argv)
/* Note we put any -D switch into the env var above */
pg_data = getenv("PGDATA");
if (pg_data)
- {
- /* XXX modifies environment var in-place ... ugly ... */
- canonicalize_path(pg_data);
- }
+ canonicalize_path(pg_data = xstrdup(pg_data));
if (pg_data == NULL &&
ctl_command != KILL_COMMAND && ctl_command != UNREGISTER_COMMAND)