From 807286f708e326a3638b664a513b884eeeee2390 Mon Sep 17 00:00:00 2001 From: rbuj Date: Tue, 3 Sep 2019 01:24:56 +0200 Subject: tar: don't remove leading whitespaces in filename field closes #299 --- src/fr-command-tar.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/fr-command-tar.c b/src/fr-command-tar.c index 62c77a9..439a12e 100644 --- a/src/fr-command-tar.c +++ b/src/fr-command-tar.c @@ -107,15 +107,15 @@ tar_get_last_field (const char *line, while ((field_n > 0) && (*f_end != 0)) { if (*f_end == ' ') { field_n--; - if (field_n != 0) { - while ((*f_end == ' ') && (*f_end != *line)) - f_end++; + if (field_n == 1) f_start = f_end; - } - } else - f_end++; + } + f_end++; } + if (*f_start == ' ') + f_start++; + return g_strdup (f_start); } -- cgit v1.2.1