summaryrefslogtreecommitdiff
path: root/libarchive_fe
diff options
context:
space:
mode:
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>2010-01-06 07:16:37 -0500
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>2010-01-06 07:16:37 -0500
commit308fe848f77eec87f7a0485152db88bc6ec1fb1d (patch)
tree04ab500ccf8d0856e8fc826258e82a559284329d /libarchive_fe
parent043e040e3f4c1d2fa74a57a5bda44dc172c3b42e (diff)
downloadlibarchive-308fe848f77eec87f7a0485152db88bc6ec1fb1d.tar.gz
Remove unreachable code.
SVN-Revision: 1809
Diffstat (limited to 'libarchive_fe')
-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,