1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-25 01:34:28 +03:00

udev: fix typo for persistent flag

The 'parsistent' adjective is misspelt.
This commit is contained in:
janana 2023-10-27 16:19:48 +08:00 committed by Luca Boccassi
parent 6cd1f6546c
commit 2b4cdac91a

View File

@ -392,7 +392,7 @@ static void cleanup_dir_after_db_cleanup(DIR *dir, DIR *datadir) {
if (faccessat(dirfd(datadir), dent->d_name, F_OK, AT_SYMLINK_NOFOLLOW) >= 0)
/* The corresponding udev database file still exists.
* Assuming the parsistent flag is set for the database. */
* Assuming the persistent flag is set for the database. */
continue;
(void) unlinkat(dirfd(dir), dent->d_name, 0);