diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-11-24 22:27:45 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-11-24 22:28:28 +0100 |
commit | 46ff0ed7b09d7c76254285b69cfe9d5f86950b8f (patch) | |
tree | 715eae4aadda5890e6b3744f386a3b0296e191a5 /src/mount-setup.c | |
parent | 9a60da2834074d970ca063c210fe9d2f05c70532 (diff) |
mount: trivial typo fix
Diffstat (limited to 'src/mount-setup.c')
-rw-r--r-- | src/mount-setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mount-setup.c b/src/mount-setup.c index 7e468e2728..4adb86f157 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])) |