From: Alvaro Herrera Date: Mon, 29 Aug 2016 21:11:36 +0000 (-0300) Subject: Fix pg_receivexlog compile X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=3aa233f82fad7ba46c93045408d2052ab1450e15;p=users%2Fheikki%2Fpostgres.git Fix pg_receivexlog compile Fix compile problem in 9050e5c89dc08, which was botched because of refactoring that had taken place in 38c83c9b75693. Per buildfarm --- diff --git a/src/bin/pg_basebackup/receivelog.c b/src/bin/pg_basebackup/receivelog.c index ba7acfba01..f8bd551ef9 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;