diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-11-10 22:32:20 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-11-10 22:32:20 +0000 |
commit | 792d6edd5b53d31406bb7a25532a26d91ecb8851 (patch) | |
tree | fc6c8843ade99b109080a8a503d05b655bc1f321 /src/backend/access/transam/xlog.c | |
parent | 1456c5b5073b40fcbcb8737fbb80fd6e42188e91 (diff) | |
download | postgresql-792d6edd5b53d31406bb7a25532a26d91ecb8851.tar.gz postgresql-792d6edd5b53d31406bb7a25532a26d91ecb8851.zip |
Clean up some misleading references to %p being a full path, per Simon.
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 9b590061731..e5455c666bd 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.254 2006/11/08 20:12:04 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.255 2006/11/10 22:32:20 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -2434,7 +2434,7 @@ RestoreArchivedFile(char *path, const char *xlogfname, switch (sp[1]) { case 'p': - /* %p: full path of target file */ + /* %p: relative path of target file */ sp++; StrNCpy(dp, xlogpath, endp - dp); make_native_path(dp); |