summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-09-21 08:15:00 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-09-21 08:15:00 +0000
commit74025d0fef284f1579b07af8c02622fd1b7364f0 (patch)
tree78f61b8b446f58ea1625c899c64a12437e4e0a35
parent5ca943d3981cc1e8a9e185975999b5a154331f7c (diff)
downloadpostgresql-74025d0fef284f1579b07af8c02622fd1b7364f0.tar.gz
fix a conflicting declaration problem with fe_setauthsvc()...
-rw-r--r--src/interfaces/libpq/fe-auth.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-auth.h b/src/interfaces/libpq/fe-auth.h
index d5b8ecd8f7..f37c69fc1a 100644
--- a/src/interfaces/libpq/fe-auth.h
+++ b/src/interfaces/libpq/fe-auth.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: fe-auth.h,v 1.1.1.1 1996/07/09 06:22:17 scrappy Exp $
+ * $Id: fe-auth.h,v 1.1.1.1.2.1 1996/09/21 08:15:00 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -29,7 +29,7 @@
#endif /* KRB4 || KRB5 */
extern int fe_sendauth(MsgType msgtype, Port *port, char *hostname, char* PQerromsg);
-extern void fe_setauthsvc(char *name, char* PQerrormsg);
+extern void fe_setauthsvc(const char *name, char* PQerrormsg);
#define PG_KRB4_VERSION "PGVER4.1" /* at most KRB_SENDAUTH_VLEN chars */
#define PG_KRB5_VERSION "PGVER5.1"