From: Robert Haas Date: Thu, 14 Jun 2012 13:43:14 +0000 (-0400) Subject: Make \conninfo print SSL information. X-Git-Tag: REL9_3_BETA1~1350 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7582e0be78bc031803e274d428381e0b6077b810;p=thirdparty%2Fpostgresql.git Make \conninfo print SSL information. Alastair Turner, per suggestion from Bruce Momjian. --- diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 5614120255d..092678604ed 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -314,6 +314,7 @@ exec_command(const char *cmd, else printf(_("You are connected to database \"%s\" as user \"%s\" on host \"%s\" at port \"%s\".\n"), db, PQuser(pset.db), host, PQport(pset.db)); + printSSLInfo(); } }