diff options
author | Kay Sievers <kay@vrfy.org> | 2013-12-18 05:06:32 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-12-18 05:07:16 +0100 |
commit | 48b9cfcb7cfbcd7ab16cae809ebda32be77366bd (patch) | |
tree | 0cc7e1bd8421fa1e0d543c04ccf41b8861cf1571 /src | |
parent | bf5332d2bf2a1acbba9daacf40570a4addbd3411 (diff) |
comment out udev's is_initialized call until the problem is sorted out
Diffstat (limited to 'src')
-rw-r--r-- | src/core/device.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/device.c b/src/core/device.c index 70fac1b8b7..c93c94726d 100644 --- a/src/core/device.c +++ b/src/core/device.c @@ -303,9 +303,13 @@ static int device_process_new_device(Manager *m, struct udev_device *dev) { assert(m); +#if 0 + /* FIXME: this is always false for devices received from udev_monitor */ + /* Don't pick up devices before udev finished initialization for them */ if (!udev_device_get_is_initialized(dev)) return 0; +#endif sysfs = udev_device_get_syspath(dev); if (!sysfs) |