mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-02-20 08:37:55 +07:00
libudev: add missing hunks
This should have been committed with udev_device_add_property - implicitly mark properties for saving to db Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
This commit is contained in:
parent
a36d7fe55b
commit
bf79b2d789
@ -123,12 +123,7 @@ int udev_builtin_run(struct udev_device *dev, enum udev_builtin_cmd cmd, const c
|
||||
}
|
||||
|
||||
int udev_builtin_add_property(struct udev_device *dev, bool test, const char *key, const char *val) {
|
||||
struct udev_list_entry *entry;
|
||||
|
||||
entry = udev_device_add_property(dev, key, val);
|
||||
/* store in db, skip private keys */
|
||||
if (key[0] != '.')
|
||||
udev_list_entry_set_num(entry, true);
|
||||
udev_device_add_property(dev, key, val);
|
||||
|
||||
if (test)
|
||||
printf("%s=%s\n", key, val);
|
||||
|
@ -842,13 +842,11 @@ void udev_event_execute_rules(struct udev_event *event,
|
||||
|
||||
for ((entry = udev_device_get_properties_list_entry(event->dev_db)); entry; entry = udev_list_entry_get_next(entry)) {
|
||||
const char *key, *value;
|
||||
struct udev_list_entry *property;
|
||||
|
||||
key = udev_list_entry_get_name(entry);
|
||||
value = udev_list_entry_get_value(entry);
|
||||
|
||||
property = udev_device_add_property(dev, key, value);
|
||||
udev_list_entry_set_num(property, true);
|
||||
udev_device_add_property(dev, key, value);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -560,7 +560,6 @@ static int import_property_from_string(struct udev_device *dev, char *line) {
|
||||
char *key;
|
||||
char *val;
|
||||
size_t len;
|
||||
struct udev_list_entry *entry;
|
||||
|
||||
/* find key */
|
||||
key = line;
|
||||
|
Loading…
Reference in New Issue
Block a user