1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-25 18:50:18 +03:00

builtin: blkid - add missing ID_ prefix for PART_ENTRY_* keys

This commit is contained in:
Kay Sievers 2012-01-26 17:56:18 +01:00
parent 6528a3938f
commit a3642381eb

View File

@ -77,7 +77,7 @@ static void print_property(struct udev_device *dev, bool test, const char *name,
} else if (!strncmp(name, "PART_ENTRY_", 11)) {
util_strscpyl(s, sizeof(s), "ID_", name, NULL);
udev_builtin_add_property(dev, test, name, value);
udev_builtin_add_property(dev, test, s, value);
}
}