mirror of
https://github.com/postgres/postgres.git
synced 2026-02-18 10:09:35 -05:00
ecpg: Change --version output to common style
When we removed the ecpg-specific versions, we also removed the "(PostgreSQL)" from the --version output, which we show in other programs. Reported-by: Ioseph Kim <pgsql-kr@postgresql.kr>
This commit is contained in:
parent
293010a68a
commit
b91ae36029
1 changed files with 1 additions and 1 deletions
|
|
@ -149,7 +149,7 @@ main(int argc, char *const argv[])
|
|||
}
|
||||
if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
|
||||
{
|
||||
printf("ecpg %s\n", PG_VERSION);
|
||||
printf("ecpg (PostgreSQL) %s\n", PG_VERSION);
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue