diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2013-03-28 09:18:02 +0000 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2013-03-28 09:18:02 +0000 |
commit | 593c39d156fd13e07dbfc43e63b53a3e89e82aa4 (patch) | |
tree | 2dff7756214014c92fc0c43436d2f8cacc8a52b0 /src/backend/utils/init/miscinit.c | |
parent | d139a5e26b0d1123d77c403e2e95feaf77634a40 (diff) | |
download | postgresql-593c39d156fd13e07dbfc43e63b53a3e89e82aa4.tar.gz postgresql-593c39d156fd13e07dbfc43e63b53a3e89e82aa4.zip |
Revoke bc5334d8679c428a709d150666b288171795bd76
Diffstat (limited to 'src/backend/utils/init/miscinit.c')
-rw-r--r-- | src/backend/utils/init/miscinit.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/backend/utils/init/miscinit.c b/src/backend/utils/init/miscinit.c index 3d48eb8c9d3..24ca97d55c7 100644 --- a/src/backend/utils/init/miscinit.c +++ b/src/backend/utils/init/miscinit.c @@ -100,25 +100,6 @@ SetDataDir(const char *dir) } /* - * Set recovery config directory, but make sure it's an absolute path. Use this, - * never set RecoveryConfDir directly. - */ -void -SetRecoveryConfDir(const char *dir) -{ - char *new; - - AssertArg(dir); - - /* If presented path is relative, convert to absolute */ - new = make_absolute_path(dir); - - if (RecoveryConfDir) - free(RecoveryConfDir); - RecoveryConfDir = new; -} - -/* * Change working directory to DataDir. Most of the postmaster and backend * code assumes that we are in DataDir so it can use relative paths to access * stuff in and under the data directory. For convenience during path |