Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ab7646f

Browse files
committed
Also rename 'struct manifest_info'.
The previous commit renamed the struct's typedef, but not the struct name itself.
1 parent 3989dbd commit ab7646f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/include/replication/backup_manifest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ typedef enum manifest_option
2424
MANIFEST_OPTION_FORCE_ENCODE
2525
} backup_manifest_option;
2626

27-
typedef struct manifest_info
27+
typedef struct backup_manifest_info
2828
{
2929
BufFile *buffile;
3030
pg_checksum_type checksum_type;

src/include/replication/basebackup.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include "nodes/replnodes.h"
1616

17-
struct manifest_info; /* avoid including backup_manifest.h */
17+
struct backup_manifest_info; /* avoid including backup_manifest.h */
1818

1919

2020
/*
@@ -34,6 +34,6 @@ typedef struct
3434
extern void SendBaseBackup(BaseBackupCmd *cmd);
3535

3636
extern int64 sendTablespace(char *path, char *oid, bool sizeonly,
37-
struct manifest_info *manifest);
37+
struct backup_manifest_info *manifest);
3838

3939
#endif /* _BASEBACKUP_H */

0 commit comments

Comments
 (0)