From d95886e7340b3812bbe30098da053f4d167b34a5 Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Fri, 12 Aug 2005 03:07:45 +0000
Subject: [PATCH] Update comments.

---
 src/port/path.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/port/path.c b/src/port/path.c
index 0890c95aa1a..2095db40165 100644
--- a/src/port/path.c
+++ b/src/port/path.c
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *	  $PostgreSQL: pgsql/src/port/path.c,v 1.53 2005/08/12 02:48:37 momjian Exp $
+ *	  $PostgreSQL: pgsql/src/port/path.c,v 1.54 2005/08/12 03:07:45 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -289,7 +289,7 @@ canonicalize_path(char *path)
 		 *	not preceed it.
 		 *	So, we only deal with "/usr/local/..", not with "/usr/local/../..".
 		 *	We don't handle the even more complex cases, like
-		 *	"usr/local/../../.." and "usr/local/../bin/../..".
+		 *	"usr/local/../../..".
 		 */
 		else if (len > 3 && strcmp(path + len - 3, "/..") == 0 &&
 				 (len != 5 || strcmp(path, "../..") != 0) &&
-- 
GitLab