1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Change message to _the_ administrator. There is only one administrative

account.

	This connection has been terminated by the administrator.
This commit is contained in:
Bruce Momjian
2001-03-26 16:59:38 +00:00
parent 7e733dc960
commit 099b60b352

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.215 2001/03/23 18:26:01 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.216 2001/03/26 16:59:38 momjian Exp $
* *
* NOTES * NOTES
* this is the "main" module of the postgres backend and * this is the "main" module of the postgres backend and
@ -1037,7 +1037,7 @@ ProcessInterrupts(void)
ProcDiePending = false; ProcDiePending = false;
QueryCancelPending = false; /* ProcDie trumps QueryCancel */ QueryCancelPending = false; /* ProcDie trumps QueryCancel */
ImmediateInterruptOK = false; /* not idle anymore */ ImmediateInterruptOK = false; /* not idle anymore */
elog(FATAL, "This connection has been terminated by an administrator"); elog(FATAL, "This connection has been terminated by the administrator");
} }
if (QueryCancelPending) if (QueryCancelPending)
{ {
@ -1703,7 +1703,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha
if (!IsUnderPostmaster) if (!IsUnderPostmaster)
{ {
puts("\nPOSTGRES backend interactive interface "); puts("\nPOSTGRES backend interactive interface ");
puts("$Revision: 1.215 $ $Date: 2001/03/23 18:26:01 $\n"); puts("$Revision: 1.216 $ $Date: 2001/03/26 16:59:38 $\n");
} }
/* /*