diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-08-30 02:54:42 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-08-30 02:54:42 +0000 |
commit | 15d3f9f6b7849a70281f151f0def7a6d335767d7 (patch) | |
tree | 98d285e17c671a56e484e98916703280e1947a78 /src/interfaces/libpq/fe-protocol3.c | |
parent | 166300f318f5b4795c0f7679144a1c23c0118163 (diff) | |
download | postgresql-15d3f9f6b7849a70281f151f0def7a6d335767d7.tar.gz postgresql-15d3f9f6b7849a70281f151f0def7a6d335767d7.zip |
Another pgindent run with lib typedefs added.
Diffstat (limited to 'src/interfaces/libpq/fe-protocol3.c')
-rw-r--r-- | src/interfaces/libpq/fe-protocol3.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaces/libpq/fe-protocol3.c b/src/interfaces/libpq/fe-protocol3.c index 68789067d2b..425da121021 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.15 2004/08/29 05:07:00 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-protocol3.c,v 1.16 2004/08/30 02:54:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -52,7 +52,7 @@ static int getNotify(PGconn *conn); static int getCopyStart(PGconn *conn, ExecStatusType copytype); static int getReadyForQuery(PGconn *conn); static int build_startup_packet(const PGconn *conn, char *packet, - const PQEnvironmentOption * options); + const PQEnvironmentOption *options); /* @@ -1400,7 +1400,7 @@ pqFunctionCall3(PGconn *conn, Oid fnid, */ char * pqBuildStartupPacket3(PGconn *conn, int *packetlen, - const PQEnvironmentOption * options) + const PQEnvironmentOption *options) { char *startpacket; @@ -1423,7 +1423,7 @@ pqBuildStartupPacket3(PGconn *conn, int *packetlen, */ static int build_startup_packet(const PGconn *conn, char *packet, - const PQEnvironmentOption * options) + const PQEnvironmentOption *options) { int packet_len = 0; const PQEnvironmentOption *next_eo; |