|
7 | 7 | * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group |
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California |
9 | 9 | * |
10 | | - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.186 2005/04/15 22:19:48 tgl Exp $ |
| 10 | + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.187 2005/04/17 03:04:29 momjian Exp $ |
11 | 11 | * |
12 | 12 | *------------------------------------------------------------------------- |
13 | 13 | */ |
@@ -5194,7 +5194,7 @@ assign_xlog_sync_method(const char *method, bool doit, GucSource source) |
5194 | 5194 | #ifndefFSYNC_IS_WRITE_THROUGH |
5195 | 5195 | if (pg_strcasecmp(method,"fsync")==0) |
5196 | 5196 | #else |
5197 | | -/* Win32 fsync() == _commit(0, which writes through a write cache */ |
| 5197 | +/* Win32 fsync() == _commit(), which writes through a write cache */ |
5198 | 5198 | if (pg_strcasecmp(method,"fsync_writethrough")==0) |
5199 | 5199 | #endif |
5200 | 5200 | { |
|