From 2e84716e76122cb7d4d15e72d69dc4b0a38cd1c6 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Mon, 12 Dec 2022 14:42:03 +0530 Subject: [PATCH] Restore check to prevent overwriting hovered file when archiving --- src/nnn.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/nnn.c b/src/nnn.c index d8a9f8c4..f0189d19 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -7610,6 +7610,9 @@ nochange: switch (sel) { case SEL_ARCHIVE: + if (r == 'c' && strcmp(tmp, pdents[cur].name) == 0) + continue; /* Cannot overwrite the hovered file */ + tmp = abspath(tmp, NULL, newpath); if (!tmp) continue;