aboutsummaryrefslogtreecommitdiff
path: root/contrib/libarchive/libarchive_fe/pathmatch.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/libarchive/libarchive_fe/pathmatch.c')
-rw-r--r--contrib/libarchive/libarchive_fe/pathmatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libarchive/libarchive_fe/pathmatch.c b/contrib/libarchive/libarchive_fe/pathmatch.c
index e211362066ef..ff8a10508b28 100644
--- a/contrib/libarchive/libarchive_fe/pathmatch.c
+++ b/contrib/libarchive/libarchive_fe/pathmatch.c
@@ -132,7 +132,7 @@ pm(const char *p, const char *s, int flags)
}
return (*s == '\0');
case '?':
- /* ? always succeds, unless we hit end of 's' */
+ /* ? always succeeds, unless we hit end of 's' */
if (*s == '\0')
return (0);
break;