aboutsummaryrefslogtreecommitdiff
path: root/src/path.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-10-14 08:50:23 +0000
committerEric Wong <normalperson@yhbt.net>2006-10-14 08:50:23 +0000
commite1d1a703f1d09d87a79a54c2f4485367aa0a0c3b (patch)
tree86a582d2daa3fb3e95b1dd46ba12195ca76ee574 /src/path.c
parent5a3f501fc8f32326bda6a3b8c7cf0b98ea108108 (diff)
path.c: speling fix (I coulda sworn I fixed this before... in -ke)
git-svn-id: https://svn.musicpd.org/mpd/trunk@4904 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/path.c')
-rw-r--r--src/path.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/path.c b/src/path.c
index 600660ab..5877d795 100644
--- a/src/path.c
+++ b/src/path.c
@@ -281,12 +281,12 @@ char *sanitizePathDup(char *path)
len = 0;
- /* illeminate more than one '/' in a row, like "///" */
+ /* eliminate more than one '/' in a row, like "///" */
while (*path) {
while (*path == '/')
path++;
if (*path == '.') {
- /* we dont want to have hidden directoires, or '.' or
+ /* we don't want to have hidden directories, or '.' or
".." in our path */
free(ret);
return NULL;