aboutsummaryrefslogtreecommitdiff
path: root/src/backend/replication/basebackup.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2022-07-01 09:37:17 +0900
committerMichael Paquier <michael@paquier.xyz>2022-07-01 09:37:17 +0900
commit33bd4698c1174d24f6e53f965f6d64aeab3611f6 (patch)
tree23906f30f3e6c48cb8086dd9804c6ff2f2d9e351 /src/backend/replication/basebackup.c
parent550bc0a6c0c6af20d34c16902f0ed977550396eb (diff)
downloadpostgresql-33bd4698c1174d24f6e53f965f6d64aeab3611f6.tar.gz
postgresql-33bd4698c1174d24f6e53f965f6d64aeab3611f6.zip
Fix code comments still referring to pg_start/stop_backup()
pg_start_backup() and pg_stop_backup() have been respectively renamed to pg_backup_start() and pg_backup_stop() as of 39969e2, but a few comments did not get the call. Reviewed-by: Kyotaro Horiguchi, David Steele Discussion: https://postgr.es/m/YrqGlj1+4DF3dbZ/@paquier.xyz
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 5244823ff85..95440013c05 100644
--- a/src/backend/replication/basebackup.c
+++ b/src/backend/replication/basebackup.c
@@ -16,7 +16,7 @@
#include <unistd.h>
#include <time.h>
-#include "access/xlog_internal.h" /* for pg_start/stop_backup */
+#include "access/xlog_internal.h" /* for pg_backup_start/stop */
#include "common/compression.h"
#include "common/file_perm.h"
#include "commands/defrem.h"