1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Export only required symbols in libpq on Win32.

Magnus Hagander
This commit is contained in:
Bruce Momjian
2004-10-16 03:26:43 +00:00
parent 88fd162ef6
commit c7add816f5
7 changed files with 41 additions and 4 deletions

View File

@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.54 2004/09/28 00:06:02 momjian Exp $
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.55 2004/10/16 03:26:43 momjian Exp $
*
* NOTES
* [ Most of these notes are wrong/obsolete, but perhaps not all ]
@ -1201,6 +1201,12 @@ PQgetssl(PGconn *conn)
return NULL;
return conn->ssl;
}
#else
void *
PQgetssl(PGconn *conn)
{
return NULL;
}
#endif /* USE_SSL */