From 3aa233f82fad7ba46c93045408d2052ab1450e15 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Mon, 29 Aug 2016 18:11:36 -0300 Subject: [PATCH] Fix pg_receivexlog compile Fix compile problem in 9050e5c89dc08, which was botched because of refactoring that had taken place in 38c83c9b75693. Per buildfarm --- src/bin/pg_basebackup/receivelog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_basebackup/receivelog.c b/src/bin/pg_basebackup/receivelog.c index ba7acfba016..f8bd551ef95 100644 --- a/src/bin/pg_basebackup/receivelog.c +++ b/src/bin/pg_basebackup/receivelog.c @@ -534,7 +534,7 @@ ReceiveXlogStream(PGconn *conn, XLogRecPtr startpos, uint32 timeline, } else { - if (stream->synchronous) + if (synchronous) reportFlushPosition = true; else reportFlushPosition = false; -- 2.39.5