From 13bfb0898d68a82124969d7010d4007a39d3bb30 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Tue, 31 Dec 2013 09:56:34 +0400 Subject: [PATCH] Ticket #3131: incorrect tilde expandion in copy/rename/move dialog. Revert "(file_mask_dialog): don't call tilde_expand() because vfs_path_from_str() returns an absolute path." This reverts commit 1b774ac1fe89501c314d885ce41e2266d1faa295. Signed-off-by: Andrew Borodin --- src/filemanager/filegui.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/filemanager/filegui.c b/src/filemanager/filegui.c index b75fa247d..62ecca921 100644 --- a/src/filemanager/filegui.c +++ b/src/filemanager/filegui.c @@ -1312,6 +1312,9 @@ file_mask_dialog (file_op_context_t * ctx, FileOperation operation, else ctx->search_handle->search_type = MC_SEARCH_T_REGEX; + tmp = dest_dir; + dest_dir = tilde_expand (tmp); + g_free (tmp); vpath = vfs_path_from_str (dest_dir); ctx->dest_mask = strrchr (dest_dir, PATH_SEP);