Commit 30f665d7 authored by Tom Lane's avatar Tom Lane

Fix my own mistake in GUC variable annotation.

parent eb06e6d1
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>. * Written by Peter Eisentraut <peter_e@gmx.net>.
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.145 2003/08/01 00:15:23 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.146 2003/08/01 01:23:11 tgl Exp $
* *
*-------------------------------------------------------------------- *--------------------------------------------------------------------
*/ */
...@@ -1338,9 +1338,9 @@ static struct config_string ConfigureNamesString[] = ...@@ -1338,9 +1338,9 @@ static struct config_string ConfigureNamesString[] =
{ {
{"DateStyle", PGC_USERSET, CLIENT_CONN_LOCALE, {"DateStyle", PGC_USERSET, CLIENT_CONN_LOCALE,
gettext_noop("The display format for date and time values, "), gettext_noop("Sets display format for date and time values"),
gettext_noop("as well as the rules for interpreting ambiguous " gettext_noop("Also controls interpretation of ambiguous "
"date input values"), "date inputs"),
GUC_LIST_INPUT | GUC_REPORT GUC_LIST_INPUT | GUC_REPORT
}, },
&datestyle_string, &datestyle_string,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment