From f03a779751f6fc8dc87628d021510c4ec9e1e667 Mon Sep 17 00:00:00 2001
From: Alvaro Herrera <alvherre@alvh.no-ip.org>
Date: Fri, 22 Feb 2013 17:03:22 -0300
Subject: [PATCH] Fix copy-and-pasteo

Harmless, but it's certainly better like this.

Noticed by Andres Freund
---
 contrib/pg_xlogdump/pg_xlogdump.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/pg_xlogdump/pg_xlogdump.c b/contrib/pg_xlogdump/pg_xlogdump.c
index aef21898fb8..78b884c20ed 100644
--- a/contrib/pg_xlogdump/pg_xlogdump.c
+++ b/contrib/pg_xlogdump/pg_xlogdump.c
@@ -44,7 +44,7 @@ typedef struct XLogDumpConfig
 	/* filter options */
 	int			filter_by_rmgr;
 	TransactionId filter_by_xid;
-	TransactionId filter_by_xid_enabled;
+	bool		filter_by_xid_enabled;
 } XLogDumpConfig;
 
 static void
-- 
GitLab