From: Magnus Hagander Date: Sun, 27 Feb 2011 11:35:31 +0000 (+0100) Subject: Fix verbose display of REPLICATION role attribute X-Git-Tag: REL9_1_ALPHA4~95 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b04137a2948a24dfa3b87222f07073eb9939b264;p=thirdparty%2Fpostgresql.git Fix verbose display of REPLICATION role attribute Josh Kupershmidt --- diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 9dc02a1e3dd..fc860cccfd0 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -2342,7 +2342,7 @@ describeRoles(const char *pattern, bool verbose) add_role_attribute(&buf, _("Cannot login")); if (pset.sversion >= 90100) - if (strcmp(PQgetvalue(res, i, 8), "t") == 0) + if (strcmp(PQgetvalue(res, i, (verbose ? 9 : 8)), "t") == 0) add_role_attribute(&buf, _("Replication")); conns = atoi(PQgetvalue(res, i, 6));