8000 Remove reference to range mode in pg_xlogdump error · medici/postgres@00e0b67 · GitHub
[go: up one dir, main page]

Skip to content

Commit 00e0b67

Browse files
committed
Remove reference to range mode in pg_xlogdump error
pg_xlogdump doesn't have any other mode, so it's just confusing to include this in the error message as it indicates there might be another mode.
1 parent 56a9974 commit 00e0b67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_xlogdump/pg_xlogdump.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ main(int argc, char **argv)
949949
/* we don't know what to print */
950950
if (XLogRecPtrIsInvalid(private.startptr))
951951
{
952-
fprintf(stderr, "%s: no start log position given in range mode.\n", progname);
952+
fprintf(stderr, "%s: no start log position given.\n", progname);
953953
goto bad_argument;
954954
}
955955

0 commit comments

Comments
 (0)
0