aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/pg_standby/pg_standby.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pg_standby/pg_standby.c b/contrib/pg_standby/pg_standby.c
index e8597c69738..15dc3442049 100644
--- a/contrib/pg_standby/pg_standby.c
+++ b/contrib/pg_standby/pg_standby.c
@@ -1,5 +1,5 @@
/*
- * $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.12 2008/05/17 01:28:21 adunstan Exp $
+ * $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.13 2008/07/08 15:11:58 heikki Exp $
*
*
* pg_standby.c
@@ -323,7 +323,7 @@ SetWALFileNameForCleanup(void)
if (seg_diff > seg)
{
log_diff++;
- seg = MaxSegmentsPerLogFile - seg_diff;
+ seg = MaxSegmentsPerLogFile - (seg_diff - seg);
}
else
seg -= seg_diff;