From: Lennart Poettering Date: Wed, 24 Nov 2010 21:27:45 +0000 (+0100) Subject: mount: trivial typo fix X-Git-Tag: v14~6 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=46ff0ed7b09d7c76254285b69cfe9d5f86950b8f mount: trivial typo fix --- diff --git a/src/mount-setup.c b/src/mount-setup.c index 7e468e272..4adb86f15 100644 --- a/src/mount-setup.c +++ b/src/mount-setup.c @@ -55,7 +55,7 @@ static const MountPoint mount_table[] = { }; /* These are API file systems that might be mounted by other software, - * we just list them here so that we know that we should igore them */ + * we just list them here so that we know that we should ignore them */ static const char * const ignore_paths[] = { "/selinux", @@ -78,7 +78,7 @@ bool mount_point_is_api(const char *path) { } bool mount_point_ignore(const char *path) { - unsigned i; + unsigned i; for (i = 0; i < ELEMENTSOF(ignore_paths); i++) if (path_equal(path, ignore_paths[i]))