11/*
2- * $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.28 2010/02/26 02:00:32 momjian Exp $
2+ * $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.29 2010/05/15 09:31:57 heikki Exp $
33 *
44 *
55 * pg_standby.c
@@ -169,7 +169,7 @@ CustomizableInitialize(void)
169169/*
170170 * This code assumes that archiveLocation is a directory You may wish to
171171 * add code to check for tape libraries, etc.. So, since it is a
172- * directory, we use stat to test ifits accessible
172+ * directory, we use stat to test ifit's accessible
173173 */
174174if (stat (archiveLocation ,& stat_buf )!= 0 )
175175{
@@ -190,8 +190,8 @@ CustomizableNextWALFileReady()
190190if (stat (WALFilePath ,& stat_buf )== 0 )
191191{
192192/*
193- * Ifits a backup file, return immediately Ifits a regular file
194- * return only ifits the right size already
193+ * Ifit's a backup file, return immediately. Ifit's a regular file
194+ * return only ifit's the right size already.
195195 */
196196if (strlen (nextWALFileName )> 24 &&
197197strspn (nextWALFileName ,"0123456789ABCDEF" )== 24 &&
@@ -250,7 +250,7 @@ CustomizableCleanupPriorWALFiles(void)
250250struct dirent * xlde ;
251251
252252/*
253- * Assumeits OK to keep failing. The failure situation may change
253+ * Assumeit's OK to keep failing. The failure situation may change
254254 * over time, so we'd rather keep going on the main processing than
255255 * fail because we couldnt clean up yet.
256256 */