diff options
Diffstat (limited to 'src/bin/psql/describe.c')
-rw-r--r-- | src/bin/psql/describe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index b7397515b73..49553268c63 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.118 2005/06/26 03:03:56 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.119 2005/07/01 17:40:28 momjian Exp $ */ #include "postgres_fe.h" #include "describe.h" @@ -1899,7 +1899,7 @@ processNamePattern(PQExpBuffer buf, const char *pattern, /* Ensure chars special to string literals are passed properly */ if (*cp == '\'' || *cp == '\\') - appendPQExpBufferChar(&namebuf, *cp); + appendPQExpBufferChar(&namebuf, *cp); /* double these */ i = PQmblen(cp, pset.encoding); while (i--) |