summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libarchive_fe/pathmatch.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libarchive_fe/pathmatch.c b/libarchive_fe/pathmatch.c
index 80a0b6aa..85074bdb 100644
--- a/libarchive_fe/pathmatch.c
+++ b/libarchive_fe/pathmatch.c
@@ -131,7 +131,6 @@ pm(const char *p, const char *s, int flags)
s = pm_slashskip(s);
}
return (*s == '\0');
- break;
case '?':
/* ? always succeds, unless we hit end of 's' */
if (*s == '\0')
@@ -150,7 +149,6 @@ pm(const char *p, const char *s, int flags)
++s;
}
return (0);
- break;
case '[':
/*
* Find the end of the [...] character class,