diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-02-07 23:10:11 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-02-07 23:10:11 +0000 |
commit | 9ceb5d8a7bfc4a6315f37913afb5f3d6cefa651f (patch) | |
tree | cfe54170ff754e064955bb00be586a5b26ab7db3 /src/interfaces/libpq/fe-misc.c | |
parent | 4842ef86247a323de9ec25e799d756c320222fe0 (diff) | |
download | postgresql-9ceb5d8a7bfc4a6315f37913afb5f3d6cefa651f.tar.gz postgresql-9ceb5d8a7bfc4a6315f37913afb5f3d6cefa651f.zip |
Fixed psql double quoting of SQL ids
Fixed libpq printing functions
Diffstat (limited to 'src/interfaces/libpq/fe-misc.c')
-rw-r--r-- | src/interfaces/libpq/fe-misc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-misc.c b/src/interfaces/libpq/fe-misc.c index ff6acefea8f..d171c457d96 100644 --- a/src/interfaces/libpq/fe-misc.c +++ b/src/interfaces/libpq/fe-misc.c @@ -25,7 +25,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-misc.c,v 1.38 2000/01/29 16:58:51 petere Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-misc.c,v 1.39 2000/02/07 23:10:11 petere Exp $ * *------------------------------------------------------------------------- */ @@ -782,6 +782,8 @@ PQenv2encoding(void) int PQmblen(const unsigned char *s, int encoding) { + (void)s; + (void)encoding; return 1; } int |