1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-03 13:47:04 +03:00

mount: trivial typo fix

This commit is contained in:
Lennart Poettering 2010-11-24 22:27:45 +01:00
parent 9a60da2834
commit 46ff0ed7b0

View File

@ -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]))