From 35812ea1f9c246806c8c319ee2fef9f9e86e15e0 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 15 Oct 2005 19:15:29 +0000 Subject: [PATCH] One extra tweak to the just-committed code. --- util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index 1297834a..5864b5dc 100644 --- a/util.c +++ b/util.c @@ -791,7 +791,7 @@ char *sanitize_path(char *dest, const char *p, const char *rootdir, int depth) * always be left pointing after a slash */ if (*p == '.' && (p[1] == '/' || p[1] == '\0')) { - if (leave_one_dotdir && p[1] && sanp != dest) + if (leave_one_dotdir && p[1]) leave_one_dotdir = 0; else { /* skip "." component */ -- 2.34.1