From: Robert Haas Date: Thu, 23 Apr 2020 13:47:50 +0000 (-0400) Subject: Also rename 'struct manifest_info'. X-Git-Url: http://git.postgresql.org/gitweb/-?a=commitdiff_plain;h=ab7646ff92c799303b9ee70ce88b89e07dae717c;p=users%2Frhaas%2Fpostgres.git Also rename 'struct manifest_info'. The previous commit renamed the struct's typedef, but not the struct name itself. --- diff --git a/src/include/replication/backup_manifest.h b/src/include/replication/backup_manifest.h index fd614202b3..06b114f3d7 100644 --- a/src/include/replication/backup_manifest.h +++ b/src/include/replication/backup_manifest.h @@ -24,7 +24,7 @@ typedef enum manifest_option MANIFEST_OPTION_FORCE_ENCODE } backup_manifest_option; -typedef struct manifest_info +typedef struct backup_manifest_info { BufFile *buffile; pg_checksum_type checksum_type; diff --git a/src/include/replication/basebackup.h b/src/include/replication/basebackup.h index f6a7422cbc..923a651cac 100644 --- a/src/include/replication/basebackup.h +++ b/src/include/replication/basebackup.h @@ -14,7 +14,7 @@ #include "nodes/replnodes.h" -struct manifest_info; /* avoid including backup_manifest.h */ +struct backup_manifest_info; /* avoid including backup_manifest.h */ /* @@ -34,6 +34,6 @@ typedef struct extern void SendBaseBackup(BaseBackupCmd *cmd); extern int64 sendTablespace(char *path, char *oid, bool sizeonly, - struct manifest_info *manifest); + struct backup_manifest_info *manifest); #endif /* _BASEBACKUP_H */