summaryrefslogtreecommitdiff
path: root/libarchive_fe
diff options
context:
space:
mode:
authorTim Kientzle <kientzle@gmail.com>2012-01-07 19:43:56 -0500
committerTim Kientzle <kientzle@gmail.com>2012-01-07 19:43:56 -0500
commit86ada71ef9f23158eb3b5d639ac59a7993aaa6f2 (patch)
tree3245aa4a6f2847e4f758093443562f73269a570f /libarchive_fe
parent4c5decfe67437c4a5c4adf6e55cd8f6ab1d86a43 (diff)
downloadlibarchive-86ada71ef9f23158eb3b5d639ac59a7993aaa6f2.tar.gz
Spelling fixes from Ulrich Spoerlein.
SVN-Revision: 4092
Diffstat (limited to 'libarchive_fe')
-rw-r--r--libarchive_fe/pathmatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libarchive_fe/pathmatch.c b/libarchive_fe/pathmatch.c
index e2113620..ff8a1050 100644
--- a/libarchive_fe/pathmatch.c
+++ b/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;