Commit 1a6ad669 authored by Bruce Momjian's avatar Bruce Momjian

Fix comment typo.

parent d8b1bf47
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.186 2005/04/15 22:19:48 tgl Exp $ * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.187 2005/04/17 03:04:29 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -5194,7 +5194,7 @@ assign_xlog_sync_method(const char *method, bool doit, GucSource source) ...@@ -5194,7 +5194,7 @@ assign_xlog_sync_method(const char *method, bool doit, GucSource source)
#ifndef FSYNC_IS_WRITE_THROUGH #ifndef FSYNC_IS_WRITE_THROUGH
if (pg_strcasecmp(method, "fsync") == 0) if (pg_strcasecmp(method, "fsync") == 0)
#else #else
/* Win32 fsync() == _commit(0, which writes through a write cache */ /* Win32 fsync() == _commit(), which writes through a write cache */
if (pg_strcasecmp(method, "fsync_writethrough") == 0) if (pg_strcasecmp(method, "fsync_writethrough") == 0)
#endif #endif
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment