diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-10-14 08:50:23 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-10-14 08:50:23 +0000 |
commit | e1d1a703f1d09d87a79a54c2f4485367aa0a0c3b (patch) | |
tree | 86a582d2daa3fb3e95b1dd46ba12195ca76ee574 /src | |
parent | 5a3f501fc8f32326bda6a3b8c7cf0b98ea108108 (diff) | |
download | mpd-e1d1a703f1d09d87a79a54c2f4485367aa0a0c3b.tar.gz mpd-e1d1a703f1d09d87a79a54c2f4485367aa0a0c3b.tar.xz mpd-e1d1a703f1d09d87a79a54c2f4485367aa0a0c3b.zip |
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')
-rw-r--r-- | src/path.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/path.c b/src/path.c index 600660abc..5877d795e 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; |