diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-02-17 04:19:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-02-17 04:19:41 +0000 |
commit | 50a90fac40db82680ac7ceacf3348f3f08f5343e (patch) | |
tree | 24d7acc1eae21fad0063ba7c9f5acd0f08c4d7d6 /src/interfaces/libpq/fe-connect.c | |
parent | 37ec19a15ce452ee94f32ebc3d6a9a45868e82fd (diff) | |
download | postgresql-50a90fac40db82680ac7ceacf3348f3f08f5343e.tar.gz postgresql-50a90fac40db82680ac7ceacf3348f3f08f5343e.zip |
Stamp HEAD as 9.0devel, and update various places that were referring to 8.5
(hope I got 'em all). Per discussion, this release will be 9.0 not 8.5.
Diffstat (limited to 'src/interfaces/libpq/fe-connect.c')
-rw-r--r-- | src/interfaces/libpq/fe-connect.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 994b70b1904..89e61a7ec71 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.386 2010/02/05 03:09:05 joe Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.387 2010/02/17 04:19:41 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -84,7 +84,7 @@ static int ldapServiceLookup(const char *purl, PQconninfoOption *options, #endif /* - * Pre-8.5 servers will return this SQLSTATE if asked to set + * Pre-9.0 servers will return this SQLSTATE if asked to set * application_name in a startup packet. We hard-wire the value rather * than looking into errcodes.h since it reflects historical behavior * rather than that of the current code. @@ -2033,7 +2033,7 @@ keep_going: /* We will come back to here until there is { /* * If we tried to send application_name, check to see - * if the error is about that --- pre-8.5 servers will + * if the error is about that --- pre-9.0 servers will * reject it at this stage of the process. If so, * close the connection and retry without sending * application_name. We could possibly get a false |