summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorTom Lane2005-03-25 00:34:31 +0000
committerTom Lane2005-03-25 00:34:31 +0000
commite6befdc9d1666667835dc49d3b61bb526d74b69d (patch)
tree6d08297f9e38a424e2cd7a387c46c8ee71038727 /src/include
parent46be09e91aa5a9e1be219f1a8b74621b16b9f2d6 (diff)
Kerberos fixes from Magnus Hagander --- in theory Kerberos 5 auth
should work on Windows now. Also, rename set_noblock to pg_set_noblock; since it is included in libpq, the former name polluted application namespace.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/port.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/port.h b/src/include/port.h
index 5a3a46ec016..4869ee66265 100644
--- a/src/include/port.h
+++ b/src/include/port.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/port.h,v 1.73 2005/03/16 21:27:23 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/port.h,v 1.74 2005/03/25 00:34:24 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -20,7 +20,8 @@
#include <ctype.h>
/* non-blocking */
-extern bool set_noblock(int sock);
+extern bool pg_set_noblock(int sock);
+extern bool pg_set_block(int sock);
/* Portable path handling for Unix/Win32 */