From: Joe Conway Date: Wed, 17 Feb 2016 18:00:34 +0000 (-0800) Subject: Revert inadvertant change in pg_config behavior X-Git-Tag: REL9_6_BETA1~678 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fc8a81e3e73e30ac083cc60837ecf98b33d5cc7e;p=postgresql Revert inadvertant change in pg_config behavior In commit a5c43b88 the behavior of command line pg_config was inadvertantly changed to include the config name when specific configs are requested, similar to when none are requested and all are emitted. This breaks scripts that expect to use pg_config for e.g. PGXS. Revert the behavior to the previous. --- diff --git a/src/bin/pg_config/pg_config.c b/src/bin/pg_config/pg_config.c index 23c04957be..9048566f0d 100644 --- a/src/bin/pg_config/pg_config.c +++ b/src/bin/pg_config/pg_config.c @@ -121,7 +121,7 @@ show_item(const char *configname, for (i = 0; i < configdata_len; i++) { if (strcmp(configname, configdata[i].name) == 0) - printf("%s = %s\n", configdata[i].name, configdata[i].setting); + printf("%s\n", configdata[i].setting); } }