diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1997-09-24 17:46:14 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1997-09-24 17:46:14 +0000 |
commit | c7dbd366ba836b4a387d2cc66f4614a534b15379 (patch) | |
tree | aeaed29f0fd4f7b46df0345e4379dbcc4d2e518f | |
parent | 0e699286d3398a1ee9947bbe4567a2cdb6bb81d8 (diff) | |
download | postgresql-c7dbd366ba836b4a387d2cc66f4614a534b15379.tar.gz postgresql-c7dbd366ba836b4a387d2cc66f4614a534b15379.zip |
Remove debugging "puts" print statement.
-rw-r--r-- | src/bin/psql/psql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index fa103fae985..e7eb664d59f 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.98 1997/09/23 19:47:59 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.99 1997/09/24 17:46:14 thomas Exp $ * *------------------------------------------------------------------------- */ @@ -1882,7 +1882,7 @@ MainLoop(PsqlSettings *pset, FILE *source) } } } -puts(line); + /* nothing on line after trimming? then ignore */ if (line[0] == '\0') { |