Fix redundant wording
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 7 Aug 2012 15:02:53 +0000 (11:02 -0400)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 7 Aug 2012 15:43:51 +0000 (11:43 -0400)
src/backend/utils/adt/misc.c

index f3c7860f0c37f4411744c2d092bb4257cd27a98c..a501bb3b74575942e3e985338b32430a7eee7156 100644 (file)
@@ -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);
 }