]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
libudev: device - fix typo in udev_device_get_sysattr_list_entry() 273/head
authorTom Gundersen <teg@jklm.no>
Wed, 17 Jun 2015 19:57:25 +0000 (21:57 +0200)
committerTom Gundersen <teg@jklm.no>
Wed, 17 Jun 2015 20:03:34 +0000 (22:03 +0200)
We were adding the attributes to the wrong list.

src/libudev/libudev-device.c

index c27b01db96ef7921bc17f63d1cf734a131c75b56..9a8d6821073ca8b04b7d2c1e32e694e7aa010297 100644 (file)
@@ -871,7 +871,7 @@ _public_ struct udev_list_entry *udev_device_get_sysattr_list_entry(struct udev_
                 udev_list_cleanup(&udev_device->sysattrs);
 
                 FOREACH_DEVICE_SYSATTR(udev_device->device, sysattr)
-                        udev_list_entry_add(&udev_device->properties, sysattr, NULL);
+                        udev_list_entry_add(&udev_device->sysattrs, sysattr, NULL);
 
                 udev_device->sysattrs_read = true;
         }