diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-07-28 16:21:53 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-07-28 16:21:53 +0900 |
commit | b7a82317b66362880c16f1bd49573ab34f0dad1f (patch) | |
tree | f5a6e408e00b18d3b5b0c4ce5093a011954a7970 /src | |
parent | 30717637c1c58fcd02980a6752c7e13c9de12b69 (diff) | |
download | postgresql-b7a82317b66362880c16f1bd49573ab34f0dad1f.tar.gz postgresql-b7a82317b66362880c16f1bd49573ab34f0dad1f.zip |
Fix typo in fd.c
The frontend version of walkdir() is defined in file_utils.c, and not
initdb.c.
Author: Sehrope Sarkuni
Discussion: https://postgr.es/m/CAH7T-artawnBt4=KODNCD8Mt2ZX4CCjJT8c=_=950xjutcRZ4Q@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/storage/file/fd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 315c74c7456..60f39031fb5 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -3208,7 +3208,8 @@ SyncDataDirectory(void) * * Errors are reported at level elevel, which might be ERROR or less. * - * See also walkdir in initdb.c, which is a frontend version of this logic. + * See also walkdir in file_utils.c, which is a frontend version of this + * logic. */ static void walkdir(const char *path, |