1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Backpatch BCC compile changes to 8.0.X for psql.

This commit is contained in:
Bruce Momjian
2005-04-29 13:42:21 +00:00
parent 18b5ef5a76
commit 7cebfdf211
9 changed files with 246 additions and 221 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-exec.c,v 1.166 2004/12/31 22:03:50 pgsql Exp $
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-exec.c,v 1.167 2005/04/29 13:42:21 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -2294,7 +2294,7 @@ PQisnonblocking(const PGconn *conn)
int
PQflush(PGconn *conn)
{
return (pqFlush(conn));
return pqFlush(conn);
}