*** pgsql/src/bin/psql/describe.c 2009/11/03 10:34:47 1.230 --- pgsql/src/bin/psql/describe.c 2009/11/11 21:07:41 1.231 *************** *** 8,14 **** * * Copyright (c) 2000-2009, PostgreSQL Global Development Group * ! * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.229 2009/10/28 18:09:44 tgl Exp $ */ #include "postgres_fe.h" --- 8,14 ---- * * Copyright (c) 2000-2009, PostgreSQL Global Development Group * ! * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.230 2009/11/03 10:34:47 petere Exp $ */ #include "postgres_fe.h" *************** static void *** 2238,2244 **** add_role_attribute(PQExpBuffer buf, const char *const str) { if (buf->len > 0) ! appendPQExpBufferStr(buf, "\n"); appendPQExpBufferStr(buf, str); } --- 2238,2244 ---- add_role_attribute(PQExpBuffer buf, const char *const str) { if (buf->len > 0) ! appendPQExpBufferStr(buf, ", "); appendPQExpBufferStr(buf, str); }