aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/async.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-18 05:59:17 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-18 05:59:17 +0000
commit94e825145d55aa67ae362b10ff3517d9f4cebf79 (patch)
tree3f36c89288df094f1719619691c1c363ea3d79f5 /src/backend/commands/async.c
parent1c00e68fadca6bd33bdf575d8cf656e98d2ff807 (diff)
downloadpostgresql-94e825145d55aa67ae362b10ff3517d9f4cebf79.tar.gz
postgresql-94e825145d55aa67ae362b10ff3517d9f4cebf79.zip
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
Diffstat (limited to 'src/backend/commands/async.c')
-rw-r--r--src/backend/commands/async.c6
1 files changed, 3 insertions, 3 deletions
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);