aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlog.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2012-06-27 19:11:26 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2012-06-27 19:11:26 +0300
commita8f97b39c70e831ced842eb7e41f810bee63e431 (patch)
tree80fa94746e091f091d1b18bbaa9edccebbaadd65 /src/backend/access/transam/xlog.c
parentec786c6c81bfa1067319305ff84b862eba3b2f27 (diff)
downloadpostgresql-a8f97b39c70e831ced842eb7e41f810bee63e431.tar.gz
postgresql-a8f97b39c70e831ced842eb7e41f810bee63e431.zip
Fix two more neglected comments, still referring to log/seg.
Fujii Masao
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r--src/backend/access/transam/xlog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index f7807560bf2..1ea7e9f9969 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -2588,11 +2588,11 @@ XLogFileCopy(XLogSegNo destsegno, TimeLineID srcTLI, XLogSegNo srcsegno)
*
* tmppath: initial name of file to install. It will be renamed into place.
*
- * find_free: if TRUE, install the new segment at the first empty log/seg
+ * find_free: if TRUE, install the new segment at the first empty segno
* number at or after the passed numbers. If FALSE, install the new segment
* exactly where specified, deleting any existing segment file there.
*
- * *max_advance: maximum number of log/seg slots to advance past the starting
+ * *max_advance: maximum number of segno slots to advance past the starting
* point. Fail if no free slot is found in this range. On return, reduced
* by the number of slots skipped over. (Irrelevant, and may be NULL,
* when find_free is FALSE.)