From 94e825145d55aa67ae362b10ff3517d9f4cebf79 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Fri, 18 Oct 1996 05:59:17 +0000 Subject: Document more #ifdef's into config.h Get rid of ESCAPE_PATCH ifdef, as its on by default, and there is no apparent reason for turning it off...it fixes a bug --- src/backend/commands/async.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/commands/async.c') diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index 5e027113be3..e131a492636 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.2 1996/10/05 20:30:31 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.3 1996/10/18 05:59:15 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -295,13 +295,13 @@ Async_NotifyAtCommit() notifyFrontEndPending = 1; } else { elog(DEBUG, "Notifying others"); -#ifndef WIN32 +#ifndef win32 if (kill(DatumGetInt32(d), SIGUSR2) < 0) { if (errno == ESRCH) { heap_delete(lRel, &lTuple->t_ctid); } } -#endif /* WIN32 */ +#endif /* win32 */ } } ReleaseBuffer(b); -- cgit v1.2.3