diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-05 00:09:47 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-05 00:09:47 +0000 |
commit | 868d708188edf188ef3a5254298c24857a255093 (patch) | |
tree | d1d4b12435b0032bba0dbced6e791169fb8f4718 /src/interfaces/libpq/fe-exec.c | |
parent | b45311e016ce95f2177bbe5e87f1f4564ec99219 (diff) | |
download | postgresql-868d708188edf188ef3a5254298c24857a255093.tar.gz postgresql-868d708188edf188ef3a5254298c24857a255093.zip |
Add // comments.
Diffstat (limited to 'src/interfaces/libpq/fe-exec.c')
-rw-r--r-- | src/interfaces/libpq/fe-exec.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index 97543a05d15..771e8c66e2b 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.34 1997/08/27 09:05:23 vadim Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.35 1997/09/05 00:09:47 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -436,11 +436,11 @@ process_response_from_backend(FILE *pfin, FILE *pfout, FILE *pfdebug, done = true; } else { /* - // since backend may produce more than one result for some - // commands need to poll until clear - // send an empty query down, and keep reading out of the pipe - // until an 'I' is received. - */ + * since backend may produce more than one result for some + * commands need to poll until clear + * send an empty query down, and keep reading out of the pipe + * until an 'I' is received. + */ pqPuts("Q ", pfout, pfdebug); /* send an empty query */ /* * Increment a flag and process messages in the usual way because |