pgsql: Fix comment.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix comment.
Date: 2014-05-08 16:43:01
Message-ID: E1WiRPR-0004hf-7w@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix comment.

Previous commit was confused about the case we're handling: actually,
what the patch is dealing with is platforms that have optreset, *and*
have <getopt.h>, but the latter fails to declare the former. Because
we use a linking probe to set HAVE_INT_OPTRESET, we need to be sure we
have a declaration even if <getopt.h> doesn't think it exists.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/1e81f8462aceb07d520daaabdc999b879381bd12

Modified Files
--------------
src/include/pg_getopt.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Noah Misch 2014-05-08 23:38:13 pgsql: Un-break ecpg test suite under --disable-integer-datetimes.
Previous Message Tom Lane 2014-05-08 16:33:35 pgsql: Allow for platforms that have optreset but not <getopt.h>.