Also rename 'struct manifest_info'.
authorRobert Haas <[email protected]>
Thu, 23 Apr 2020 13:47:50 +0000 (09:47 -0400)
committerRobert Haas <[email protected]>
Thu, 23 Apr 2020 13:47:50 +0000 (09:47 -0400)
The previous commit renamed the struct's typedef, but not the struct
name itself.

src/include/replication/backup_manifest.h
src/include/replication/basebackup.h

index fd614202b31d8dac95270ee7a183d62a2598d3f5..06b114f3d7742a41bad7ee246e8746077350e381 100644 (file)
@@ -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;
index f6a7422cbc706c1b2bfe6680b60d24a4e3ea7ba6..923a651cac3fc04591194e4f9069b383dda527e2 100644 (file)
@@ -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 */