recipes: simplify package names for the produced GTK packages
[dragora.git] / patches / tar / 85c005ee1345c342f707f3c55317daf6cb050603
blob9e255df5760246b07e7211987568aab22ad8cb3c
1 From 85c005ee1345c342f707f3c55317daf6cb050603 Mon Sep 17 00:00:00 2001
2 From: Sergey Poznyakoff <gray@gnu.org.ua>
3 Date: Thu, 10 Jan 2019 18:18:49 +0200
4 Subject: Remove erroneous abort() call
6 The call was introduced by commit ccef8581. It caused tar to abort
7 on perfectly normal operations, like untarring archives containing
8 ./ with the -U option,
10 See http://lists.gnu.org/archive/html/bug-tar/2019-01/msg00019.html
11 for details.
13 * src/extract.c (maybe_recoverable): Remove misplaced call to abort().
14 ---
15  src/extract.c | 2 +-
16  1 file changed, 1 insertion(+), 1 deletion(-)
18 diff --git a/src/extract.c b/src/extract.c
19 index 090b866..8276f8f 100644
20 --- a/src/extract.c
21 +++ b/src/extract.c
22 @@ -787,7 +787,7 @@ maybe_recoverable (char *file_name, bool regular, bool *interdir_made)
23         case UNLINK_FIRST_OLD_FILES:
24           break;
25         }
26 -      abort (); /* notreached */
27 +      FALLTHROUGH;
29      case ENOENT:
30        /* Attempt creating missing intermediate directories.  */
31 -- 
32 cgit v1.0-41-gc330