diff options
author | Tom Gundersen <teg@jklm.no> | 2015-03-05 18:08:50 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-03-09 23:36:27 +0100 |
commit | b94da8cf72aa363582e0acae134d45c88d13bc75 (patch) | |
tree | b85fe86f5dd6f67a8cd4490b4acf3ba9d3d9f739 /src/udev/udev-builtin.c | |
parent | 570b83cc62067f518c119e4803b4f234d1f0f01c (diff) |
libudev: add missing hunks
This should have been committed with
udev_device_add_property - implicitly mark properties for saving to db
Diffstat (limited to 'src/udev/udev-builtin.c')
-rw-r--r-- | src/udev/udev-builtin.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/udev/udev-builtin.c b/src/udev/udev-builtin.c index d2aec1b200..fabc653800 100644 --- a/src/udev/udev-builtin.c +++ b/src/udev/udev-builtin.c @@ -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); |