From: Bruce Momjian Date: Wed, 24 Dec 2025 01:35:51 +0000 (-0500) Subject: C comment: fix psql "pstdout" duplicate to "pstdin" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2214a207ee8170afce79478df3b37114a94d976e;p=thirdparty%2Fpostgresql.git C comment: fix psql "pstdout" duplicate to "pstdin" Reported-by: Ignat Remizov Author: Ignat Remizov Discussion: https://postgr.es/m/CAKiC8XbbR2_YqmbxmYWuEA+MmWP3c=obV5xS1Hye3ZHS-Ss_DA@mail.gmail.com --- diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c index 92c955b637a..04553c3a33f 100644 --- a/src/bin/psql/copy.c +++ b/src/bin/psql/copy.c @@ -33,7 +33,7 @@ * \copy ( query stmt ) to filename [options] * * where 'filename' can be one of the following: - * '' | PROGRAM '' | stdin | stdout | pstdout | pstdout + * '' | PROGRAM '' | stdin | stdout | pstdin | pstdout * and 'query' can be one of the following: * SELECT | UPDATE | INSERT | DELETE *