diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-06-09 17:59:19 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-06-09 17:59:19 +0000 |
commit | cdfb3d99811d4b1c99c2e0c29ff8cba5043f0c91 (patch) | |
tree | 87b92fbdf9854bd77bc420a4fae1cc6eb25a4e9d /src/interfaces/libpq/libpq-int.h | |
parent | 2df532d9a2b79f27f17235b3b125bd0ab977b7d8 (diff) |
freeaddrinfo2() does need two parameters after all, per comment by
Kurt Roeckx. Add some documentation to try to prevent others from
repeating my mistake.
Diffstat (limited to 'src/interfaces/libpq/libpq-int.h')
-rw-r--r-- | src/interfaces/libpq/libpq-int.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/libpq/libpq-int.h b/src/interfaces/libpq/libpq-int.h index eafd4c30935..f710f58b8e4 100644 --- a/src/interfaces/libpq/libpq-int.h +++ b/src/interfaces/libpq/libpq-int.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: libpq-int.h,v 1.71 2003/06/08 17:43:00 tgl Exp $ + * $Id: libpq-int.h,v 1.72 2003/06/09 17:59:19 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -270,6 +270,7 @@ struct pg_conn /* Transient state needed while establishing connection */ struct addrinfo *addrlist; /* list of possible backend addresses */ struct addrinfo *addr_cur; /* the one currently being tried */ + int addrlist_family; /* needed to know how to free addrlist */ PGSetenvStatusType setenv_state; /* for 2.0 protocol only */ const PQEnvironmentOption *next_eo; |