opnsense-ports/devel/elfutils/files/patch-src_elfcompress.c
Franco Fichtner d1d55c00c8 */*: sync with upstream
Taken from: FreeBSD
2017-01-21 18:28:10 +01:00

23 lines
639 B
C

--- src/elfcompress.c.orig 2016-12-28 01:32:01.000000000 -0800
+++ src/elfcompress.c 2017-01-18 16:21:03.680565000 -0800
@@ -135,7 +135,10 @@
if (type == T_UNSET)
type = T_COMPRESS_ZLIB;
if (patterns == NULL)
- add_pattern (".?(z)debug*");
+ {
+ add_pattern (".debug*");
+ add_pattern (".zdebug*");
+ }
break;
case ARGP_KEY_NO_ARGS:
@@ -162,7 +165,7 @@
struct section_pattern *pattern = patterns;
while (pattern != NULL)
{
- if (fnmatch (pattern->pattern, name, FNM_EXTMATCH) == 0)
+ if (fnmatch (pattern->pattern, name, 0) == 0)
return true;
pattern = pattern->next;
}