From: Alvaro Herrera Date: Tue, 7 Aug 2012 15:02:53 +0000 (-0400) Subject: Fix redundant wording X-Git-Tag: REL9_3_BETA1~1132 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3a42a3ffd898114e6e19dafe0911b23921b288f4;p=thirdparty%2Fpostgresql.git Fix redundant wording --- diff --git a/src/backend/utils/adt/misc.c b/src/backend/utils/adt/misc.c index f3c7860f0c3..a501bb3b745 100644 --- a/src/backend/utils/adt/misc.c +++ b/src/backend/utils/adt/misc.c @@ -173,7 +173,7 @@ pg_terminate_backend(PG_FUNCTION_ARGS) if (r == SIGNAL_BACKEND_NOPERMISSION) ereport(ERROR, (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), - (errmsg("must be superuser or have the same role to terminate backends running in other server processes")))); + (errmsg("must be superuser or have the same role to terminate other server processes")))); PG_RETURN_BOOL(r == SIGNAL_BACKEND_SUCCESS); }