From 6d89b0860cba23761db3d08523c28e4da79bcbcd Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Wed, 1 Oct 2014 19:24:50 +0200 Subject: [PATCH] Fix damange from wrongly split commit in fdf81c9a6cf94. Unfortunately I mistakenly split the commit wrongly into two parts, leaving one part of renaming StreamLog to StreamLogicalLog in the second commit. Which isn't backported to 9.4... Fix it in 9.4 only, as master already is 'fixed' by the subsequent commit. Noticed by Jan Wieck and the buildfarm. --- src/bin/pg_basebackup/pg_recvlogical.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_basebackup/pg_recvlogical.c b/src/bin/pg_basebackup/pg_recvlogical.c index a88ffacc06d..632b2cc983e 100644 --- a/src/bin/pg_basebackup/pg_recvlogical.c +++ b/src/bin/pg_basebackup/pg_recvlogical.c @@ -951,7 +951,7 @@ main(int argc, char **argv) while (true) { - StreamLog(); + StreamLogicalLog(); if (time_to_abort) { /* -- 2.39.5