File tree Expand file tree Collapse file tree 4 files changed +3
-31
lines changed Expand file tree Collapse file tree 4 files changed +3
-31
lines changed Original file line number Diff line number Diff line change @@ -1867,24 +1867,6 @@ char *PQpass(const PGconn *conn);
18671867 </listitem>
18681868 </varlistentry>
18691869
1870- <varlistentry id="libpq-PQsslpassword">
1871- <term><function>PQsslpassword</function><indexterm><primary>PQsslpassword</primary></indexterm></term>
1872-
1873- <listitem>
1874- <para>
1875- Returns the password for the SSL client key.
1876- <synopsis>
1877- char *PQsslpassword(const PGconn *conn);
1878- </synopsis>
1879- </para>
1880-
1881- <para>
1882- <xref linkend="libpq-PQsslpassword"/> will return the SSL password specified
1883- in the connection parameters.
1884- </para>
1885- </listitem>
1886- </varlistentry>
1887-
18881870 <varlistentry id="libpq-PQhost">
18891871 <term><function>PQhost</function><indexterm><primary>PQhost</primary></indexterm></term>
18901872
Original file line number Diff line number Diff line change @@ -176,7 +176,6 @@ PQresultMemorySize 173
176176PQhostaddr 174
177177PQgssEncInUse 175
178178PQgetgssctx 176
179- PQsslpassword 177
180- PQsetSSLKeyPassHook 178
181- PQgetSSLKeyPassHook 179
182- PQdefaultSSLKeyPassHook 180
179+ PQsetSSLKeyPassHook 177
180+ PQgetSSLKeyPassHook 178
181+ PQdefaultSSLKeyPassHook 179
Original file line number Diff line number Diff line change @@ -6550,14 +6550,6 @@ PQport(const PGconn *conn)
65506550 return "" ;
65516551}
65526552
6553- char *
6554- PQsslpassword (const PGconn * conn )
6555- {
6556- if (!conn )
6557- return NULL ;
6558- return conn -> sslpassword ;
6559- }
6560-
65616553char *
65626554PQtty (const PGconn * conn )
65636555{
Original file line number Diff line number Diff line change @@ -317,7 +317,6 @@ extern char *PQpass(const PGconn *conn);
317317extern char * PQhost (const PGconn * conn );
318318extern char * PQhostaddr (const PGconn * conn );
319319extern char * PQport (const PGconn * conn );
320- extern char * PQsslpassword (const PGconn * conn );
321320extern char * PQtty (const PGconn * conn );
322321extern char * PQoptions (const PGconn * conn );
323322extern ConnStatusType PQstatus (const PGconn * conn );
You can’t perform that action at this time.
0 commit comments