aboutsummaryrefslogtreecommitdiff
path: root/src/backend/replication/basebackup.c
diff options
context:
space:
mode:
authorFujii Masao <fujii@postgresql.org>2014-01-27 12:39:11 +0900
committerFujii Masao <fujii@postgresql.org>2014-01-27 12:39:11 +0900
commitdd515d4082876f9fcc0b6eed421dd3b6d43579be (patch)
treede7d1a90337f4f6ac7eaa43f0d160dad46670263 /src/backend/replication/basebackup.c
parent7c619be623237f3fee3222bc171a6a0afb0ce7a5 (diff)
downloadpostgresql-dd515d4082876f9fcc0b6eed421dd3b6d43579be.tar.gz
postgresql-dd515d4082876f9fcc0b6eed421dd3b6d43579be.zip
Change the suffix of auto conf temporary file from "temp" to "tmp".
Michael Paquier
Diffstat (limited to 'src/backend/replication/basebackup.c')
-rw-r--r--src/backend/replication/basebackup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/basebackup.c b/src/backend/replication/basebackup.c
index fc35f5b2827..7d0ed9ce4c8 100644
--- a/src/backend/replication/basebackup.c
+++ b/src/backend/replication/basebackup.c
@@ -834,7 +834,7 @@ sendDir(char *path, int basepathlen, bool sizeonly, List *tablespaces)
/* skip auto conf temporary file */
if (strncmp(de->d_name,
- PG_AUTOCONF_FILENAME ".temp",
+ PG_AUTOCONF_FILENAME ".tmp",
sizeof(PG_AUTOCONF_FILENAME) + 4) == 0)
continue;