Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitfc8a81e

Browse files
committed
Revert inadvertant change in pg_config behavior
In commita5c43b8 the behavior of command line pg_config wasinadvertantly changed to include the config name when specificconfigs are requested, similar to when none are requested andall are emitted. This breaks scripts that expect to usepg_config for e.g. PGXS. Revert the behavior to the previous.
1 parenta5c43b8 commitfc8a81e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/bin/pg_config/pg_config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ show_item(const char *configname,
121121
for (i=0;i<configdata_len;i++)
122122
{
123123
if (strcmp(configname,configdata[i].name)==0)
124-
printf("%s = %s\n",configdata[i].name,configdata[i].setting);
124+
printf("%s\n",configdata[i].setting);
125125
}
126126
}
127127

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp