aboutsummaryrefslogtreecommitdiff
path: root/tar.c
diff options
context:
space:
mode:
Diffstat (limited to 'tar.c')
-rw-r--r--tar.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/tar.c b/tar.c
index 018ccdc11..1f8eb4bcb 100644
--- a/tar.c
+++ b/tar.c
@@ -504,11 +504,7 @@ static int writeTarFile(const char* tarName, int verboseFlag, char **argv,
void append_file_to_list(const char *new_name, char ***list, int *list_count)
{
*list = realloc(*list, sizeof(char *) * (*list_count + 2));
- if (last_char_is(new_name, '/')) {
- (*list)[*list_count] = concat_path_file(new_name, "*");
- } else {
- (*list)[*list_count] = xstrdup(new_name);
- }
+ (*list)[*list_count] = xstrdup(new_name);
(*list_count)++;
(*list)[*list_count] = NULL;
}