From e1d1a703f1d09d87a79a54c2f4485367aa0a0c3b Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 14 Oct 2006 08:50:23 +0000 Subject: 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 --- src/path.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/path.c') 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; -- cgit v1.2.3