diff options
Diffstat (limited to 'shell/e-folder-dnd-bridge.c')
-rw-r--r-- | shell/e-folder-dnd-bridge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-folder-dnd-bridge.c b/shell/e-folder-dnd-bridge.c index 9ee9441c9d..bc45a2e03e 100644 --- a/shell/e-folder-dnd-bridge.c +++ b/shell/e-folder-dnd-bridge.c @@ -362,7 +362,7 @@ handle_data_received_path (GdkDragContext *context, return FALSE; base_name = g_path_get_basename (source_path); - destination_path = g_concat_dir_and_file (path, base_name); + destination_path = g_build_filename (path, base_name, NULL); g_free (base_name); switch (context->action) { |