* printGSSInfo * * Prints information about the current GSSAPI connection, if GSSAPI encryption is in use */
| 3626 | * Prints information about the current GSSAPI connection, if GSSAPI encryption is in use |
| 3627 | */ |
| 3628 | static void |
| 3629 | printGSSInfo(void) |
| 3630 | { |
| 3631 | if (!PQgssEncInUse(pset.db)) |
| 3632 | return; /* no GSSAPI encryption in use */ |
| 3633 | |
| 3634 | printf(_("GSSAPI-encrypted connection\n")); |
| 3635 | } |
| 3636 | |
| 3637 | |
| 3638 | /* |
no test coverage detected