Fix thinko in comment.
authorTom Lane
Thu, 8 Dec 2005 15:38:29 +0000 (15:38 +0000)
committerTom Lane
Thu, 8 Dec 2005 15:38:29 +0000 (15:38 +0000)
src/backend/storage/file/fd.c

index f54e164f5f95bb1910ce411e5ac92a2c5a40f10c..b7f1c3f5a25b03095472f69a24b38313f1cf7ffa 100644 (file)
@@ -7,7 +7,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/backend/storage/file/fd.c,v 1.123 2005/12/01 20:24:18 tgl Exp $
+ *   $PostgreSQL: pgsql/src/backend/storage/file/fd.c,v 1.124 2005/12/08 15:38:29 tgl Exp $
  *
  * NOTES:
  *
@@ -1405,7 +1405,7 @@ TryAgain:
  *     dir = AllocateDir(path);
  *     while ((dirent = ReadDir(dir, path)) != NULL)
  *         process dirent;
- *     FreeDir(path);
+ *     FreeDir(dir);
  *
  * since a NULL dir parameter is taken as indicating AllocateDir failed.
  * (Make sure errno hasn't been changed since AllocateDir if you use this