diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2004-10-12 21:54:45 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2004-10-12 21:54:45 +0000 |
commit | 0fd37839d9b45158a301a767b14fee0ace9d4332 (patch) | |
tree | 4047d2d3185707b65586ffaaec668c19d1c8b60e /src/interfaces/libpq/fe-protocol3.c | |
parent | 8532a1aabe0cd334ad004d185a2996b40b7277f4 (diff) | |
download | postgresql-0fd37839d9b45158a301a767b14fee0ace9d4332.tar.gz postgresql-0fd37839d9b45158a301a767b14fee0ace9d4332.zip |
Message style revisions
Diffstat (limited to 'src/interfaces/libpq/fe-protocol3.c')
-rw-r--r-- | src/interfaces/libpq/fe-protocol3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/libpq/fe-protocol3.c b/src/interfaces/libpq/fe-protocol3.c index 425da121021..548d036e712 100644 --- a/src/interfaces/libpq/fe-protocol3.c +++ b/src/interfaces/libpq/fe-protocol3.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-protocol3.c,v 1.16 2004/08/30 02:54:41 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-protocol3.c,v 1.17 2004/10/12 21:54:45 petere Exp $ * *------------------------------------------------------------------------- */ @@ -353,7 +353,7 @@ pqParseInput3(PGconn *conn) { /* Trouble --- report it */ printfPQExpBuffer(&conn->errorMessage, - libpq_gettext("Message contents do not agree with length in message type \"%c\"\n"), + libpq_gettext("message contents do not agree with length in message type \"%c\"\n"), id); /* build an error result holding the error message */ pqSaveErrorResult(conn); @@ -510,7 +510,7 @@ getAnotherTuple(PGconn *conn, int msgLength) { /* Replace partially constructed result with an error result */ printfPQExpBuffer(&conn->errorMessage, - libpq_gettext("unexpected field count in D message\n")); + libpq_gettext("unexpected field count in \"D\" message\n")); pqSaveErrorResult(conn); /* Discard the failed message by pretending we read it */ conn->inCursor = conn->inStart + 5 + msgLength; |