From 902377c465031947d747bb2e3912b22a92329b7f Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Thu, 3 Nov 2005 17:11:40 +0000 Subject: Rename the members of CommandDest enum so they don't collide with other uses of those names. (Debug and None were pretty bad names anyway.) I hope I catched all uses of the names in comments too. --- src/backend/commands/async.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/commands/async.c') diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index 69d97d09237..2186aa8d288 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/async.c,v 1.126 2005/10/15 02:49:15 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/commands/async.c,v 1.127 2005/11/03 17:11:34 alvherre Exp $ * *------------------------------------------------------------------------- */ @@ -994,7 +994,7 @@ ProcessIncomingNotify(void) static void NotifyMyFrontEnd(char *relname, int32 listenerPID) { - if (whereToSendOutput == Remote) + if (whereToSendOutput == DestRemote) { StringInfoData buf; -- cgit v1.2.3