diff options
author | Michael Meskes <meskes@postgresql.org> | 2012-02-06 20:46:48 +0100 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2012-02-06 20:58:57 +0100 |
commit | 0ee23b53beb851d60c0eff9bde8fd7a303270720 (patch) | |
tree | dfe0bdd169af4a1f5eff8c688094a77d0516534b /src | |
parent | 5fc78efcec01fd5e857278556ad4312ae94ecc58 (diff) | |
download | postgresql-0ee23b53beb851d60c0eff9bde8fd7a303270720.tar.gz postgresql-0ee23b53beb851d60c0eff9bde8fd7a303270720.zip |
Allow the connection keyword array to carry all seven items in ecpglib.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/ecpglib/connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/ecpglib/connect.c b/src/interfaces/ecpg/ecpglib/connect.c index 9df50c5089e..15384ec3523 100644 --- a/src/interfaces/ecpg/ecpglib/connect.c +++ b/src/interfaces/ecpg/ecpglib/connect.c @@ -274,7 +274,7 @@ ECPGconnect(int lineno, int c, const char *name, const char *user, const char *p *port = NULL, *realname = NULL, *options = NULL; - const char *conn_keywords[6]; + const char *conn_keywords[7]; const char *conn_values[6]; ecpg_init_sqlca(sqlca); |