Commit c742d1db authored by Bruce Momjian's avatar Bruce Momjian

Update pg_upgrade comments for recent configpath fix.

parent f6a05fd9
...@@ -276,6 +276,7 @@ or\n"), old_cluster.port, new_cluster.port, os_info.user); ...@@ -276,6 +276,7 @@ or\n"), old_cluster.port, new_cluster.port, os_info.user);
* *
* Checks a directory option. * Checks a directory option.
* dirpath - the directory name supplied on the command line * dirpath - the directory name supplied on the command line
* configpath - optional configuration directory
* envVarName - the name of an environment variable to get if dirpath is NULL * envVarName - the name of an environment variable to get if dirpath is NULL
* cmdLineOption - the command line option corresponds to this directory (-o, -O, -n, -N) * cmdLineOption - the command line option corresponds to this directory (-o, -O, -n, -N)
* description - a description of this directory option * description - a description of this directory option
...@@ -305,7 +306,8 @@ check_required_directory(char **dirpath, char **configpath, ...@@ -305,7 +306,8 @@ check_required_directory(char **dirpath, char **configpath,
} }
/* /*
* Trim off any trailing path separators * Trim off any trailing path separators because we construct paths
* by appending to this path.
*/ */
#ifndef WIN32 #ifndef WIN32
if ((*dirpath)[strlen(*dirpath) - 1] == '/') if ((*dirpath)[strlen(*dirpath) - 1] == '/')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment