On Wed, 20.07.11 14:14, Peter Hutterer ([email protected]) wrote: > > --- a/config/udev.c > > +++ b/config/udev.c > > @@ -251,14 +251,12 @@ wakeup_handler(pointer data, int err, pointer > > read_mask) > > return; > > action = udev_device_get_action(udev_device); > > if (action) { > > - if (!strcmp(action, "add")) > > - device_added(udev_device); > > - else if (!strcmp(action, "remove")) > > - device_removed(udev_device); > > - else if (!strcmp(action, "change")) { > > + if (!strcmp(action, "add") || !strcmp(action, "change")) { > > device_removed(udev_device); > > device_added(udev_device); > > } > > + else if (!strcmp(action, "remove")) > > + device_removed(udev_device); > > } > > udev_device_unref(udev_device); > > } > > merged all four, thanks. > > can I assume your Signed-off-by? > (I guess I don't have to since we're working for the same corp, but...)
Yes, of course. Wasn't aware you guys were using S-o-b. Otherwise I'd have included it. Thanks for merging! Lennart -- Lennart Poettering - Red Hat, Inc. _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
